Try to fix executable path generated in CI

This commit is contained in:
Dragios
2020-05-04 22:35:20 +08:00
committed by FearlessTobi
parent cc80fc9fda
commit 6f03adec89
2 changed files with 4 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ COMPRESSION_FLAGS="-cJvf"
mkdir "$REV_NAME"
cp build/bin/yuzu-cmd "$REV_NAME"
cp build/bin/yuzu "$REV_NAME"
cp build/bin/Release/yuzu-cmd "$REV_NAME"
cp build/bin/Release/yuzu "$REV_NAME"
. .travis/common/post-upload.sh

View File

@@ -8,8 +8,8 @@ COMPRESSION_FLAGS="-czvf"
mkdir "$REV_NAME"
cp build/bin/yuzu-cmd "$REV_NAME"
cp -r build/bin/yuzu.app "$REV_NAME"
cp build/bin/Release/yuzu-cmd "$REV_NAME"
cp -r build/bin/Release/yuzu.app "$REV_NAME"
# move libs into folder for deployment
macpack "${REV_NAME}/yuzu.app/Contents/MacOS/yuzu" -d "../Frameworks"