From 9c7df029418da6919c489e806253d4ea6f063a16 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Tue, 20 Nov 2018 22:43:10 -0800 Subject: [PATCH] Avoid duplicate framework copy now that it's handle in the project file --- scripts/generate-dmg.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scripts/generate-dmg.sh b/scripts/generate-dmg.sh index 091a9b66..8c95866d 100755 --- a/scripts/generate-dmg.sh +++ b/scripts/generate-dmg.sh @@ -43,10 +43,6 @@ echo Copying dylib dependencies mkdir $BUILD_FOLDER/app/Moonlight.app/Contents/lib cp $SOURCE_ROOT/libs/mac/lib/*.dylib $BUILD_FOLDER/app/Moonlight.app/Contents/lib/ || fail "Dylib copy failed!" -echo Copying frameworks dependencies -mkdir $BUILD_FOLDER/app/Moonlight.app/Contents/Frameworks -cp -R $SOURCE_ROOT/libs/mac/Frameworks/ $BUILD_FOLDER/app/Moonlight.app/Contents/Frameworks/ || fail "Framework copy failed!" - echo Creating app bundle EXTRA_ARGS= if [ "$BUILD_CONFIG" == "Debug" ]; then EXTRA_ARGS="$EXTRA_ARGS -use-debug-libs"; fi