diff options
| author | 2023-10-10 13:50:50 -0400 | |
|---|---|---|
| committer | 2023-10-10 13:50:50 -0400 | |
| commit | c206a04747b5e85e2c8ca1dac10be72d119e6a10 (patch) | |
| tree | 773428be87b8aa027d3ed60c304f365d6e1d8a1e | |
| parent | ci/linux: Upload separated debug symbols (diff) | |
| download | yuzu-c206a04747b5e85e2c8ca1dac10be72d119e6a10.tar.gz yuzu-c206a04747b5e85e2c8ca1dac10be72d119e6a10.tar.xz yuzu-c206a04747b5e85e2c8ca1dac10be72d119e6a10.zip | |
ci/linux: Fix find parameter order
Co-authored-by: liamwhite <liamwhite@users.noreply.github.com>
Diffstat (limited to '')
| -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 | |||
| 42 | mv $EXE_PATH.out $EXE_PATH | 42 | mv $EXE_PATH.out $EXE_PATH |
| 43 | done | 43 | done |
| 44 | # Strip debug symbols from all executables | 44 | # Strip debug symbols from all executables |
| 45 | find -type f bin/ -not -regex '.*.debug' -exec strip -g {} ';' | 45 | find bin/ -type f -not -regex '.*.debug' -exec strip -g {} ';' |
| 46 | 46 | ||
| 47 | DESTDIR="$PWD/AppDir" ninja install | 47 | DESTDIR="$PWD/AppDir" ninja install |
| 48 | rm -vf AppDir/usr/bin/yuzu-cmd AppDir/usr/bin/yuzu-tester | 48 | rm -vf AppDir/usr/bin/yuzu-cmd AppDir/usr/bin/yuzu-tester |