Skip to content
Snippets Groups Projects
Unverified Commit c206a047 authored by toast2903's avatar toast2903 Committed by GitHub
Browse files

ci/linux: Fix find parameter order


Co-authored-by: default avatarliamwhite <liamwhite@users.noreply.github.com>
parent 00b0938f
No related branches found
No related tags found
No related merge requests found
...@@ -42,7 +42,7 @@ for EXE in yuzu; do ...@@ -42,7 +42,7 @@ for EXE in yuzu; do
mv $EXE_PATH.out $EXE_PATH mv $EXE_PATH.out $EXE_PATH
done done
# Strip debug symbols from all executables # 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 DESTDIR="$PWD/AppDir" ninja install
rm -vf AppDir/usr/bin/yuzu-cmd AppDir/usr/bin/yuzu-tester rm -vf AppDir/usr/bin/yuzu-cmd AppDir/usr/bin/yuzu-tester
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment