Browse Source
ci/linux: Fix find parameter order
Co-authored-by: liamwhite <liamwhite@users.noreply.github.com>
pull/15/merge
toast2903
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
.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 |
|
|
|
|