diff options
author | toast2903 <22451773+lat9nq@users.noreply.github.com> | 2023-10-10 19:50:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-10 19:50:50 +0200 |
commit | c206a04747b5e85e2c8ca1dac10be72d119e6a10 (patch) | |
tree | 773428be87b8aa027d3ed60c304f365d6e1d8a1e | |
parent | ci/linux: Upload separated debug symbols (diff) | |
download | yuzu-c206a04747b5e85e2c8ca1dac10be72d119e6a10.tar yuzu-c206a04747b5e85e2c8ca1dac10be72d119e6a10.tar.gz yuzu-c206a04747b5e85e2c8ca1dac10be72d119e6a10.tar.bz2 yuzu-c206a04747b5e85e2c8ca1dac10be72d119e6a10.tar.lz yuzu-c206a04747b5e85e2c8ca1dac10be72d119e6a10.tar.xz yuzu-c206a04747b5e85e2c8ca1dac10be72d119e6a10.tar.zst yuzu-c206a04747b5e85e2c8ca1dac10be72d119e6a10.zip |
-rwxr-xr-x | .ci/scripts/linux/docker.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/scripts/linux/docker.sh b/.ci/scripts/linux/docker.sh index 202c07577..a16577b27 100755 --- a/.ci/scripts/linux/docker.sh +++ b/.ci/scripts/linux/docker.sh @@ -42,7 +42,7 @@ for EXE in yuzu; do mv $EXE_PATH.out $EXE_PATH done # Strip debug symbols from all executables -find -type f bin/ -not -regex '.*.debug' -exec strip -g {} ';' +find bin/ -type f -not -regex '.*.debug' -exec strip -g {} ';' DESTDIR="$PWD/AppDir" ninja install rm -vf AppDir/usr/bin/yuzu-cmd AppDir/usr/bin/yuzu-tester |