From f8a283bbfe0fcf3d5642068cf1a715bad20a060e Mon Sep 17 00:00:00 2001 From: Marcin Mitura Date: Thu, 7 Mar 2024 09:54:39 +0100 Subject: [PATCH] 0.0.6 - Minor fixes I need to do more careful things. --- build_yuzu.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build_yuzu.sh b/build_yuzu.sh index f5aa81d..33f6c5f 100755 --- a/build_yuzu.sh +++ b/build_yuzu.sh @@ -86,7 +86,7 @@ cmake .. -GNinja -DCMAKE_BUILD_TYPE=RELEASE \ -DENABLE_QT6=ON \ -DYUZU_USE_EXTERNAL_VULKAN_HEADERS=OFF -echo -e "${PURPLE}Building Suyu...${NC}" +echo -e "${PURPLE}Building yuzu...${NC}" # Build Suyu using Ninja ninja @@ -96,18 +96,18 @@ if [ $? -eq 0 ]; then echo -e "${GREEN}Build successful${NC}." # Remove existing Suyu.app if it exists in /Applications - if [ -d "/Applications/Suyu.app" ]; then + if [ -d "/Applications/yuzu.app" ]; then echo -e "${PURPLE}Removing existing Suyu.app in /Applications...${NC}" - rm -rf "/Applications/Suyu.app" + rm -rf "/Applications/yuzu.app" fi # Bundle dependencies and codesign dylibbundler -of -cd -b -x bin/yuzu.app/Contents/MacOS/yuzu -d bin/yuzu.app/Contents/libs/ - echo -e "${PURPLE}Moving Suyu.app to /Applications...${NC}" + echo -e "${PURPLE}Moving yuzu.app to /Applications...${NC}" # Move Suyu.app to /Applications - mv bin/yuzu.app /Applications/Suyu.app + mv bin/yuzu.app /Applications/yuzu.app echo -e "${PURPLE}Installation completed.${NC}"