Fix formatting, make appimage work (#31)

This commit is contained in:
Miepee 2022-08-14 23:53:03 +02:00 committed by GitHub
parent 3e2121c854
commit df69e1a369
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -240,7 +240,9 @@ radeonsi_sync_compile="true" exec "$(dirname "${BASH_SOURCE[0]}")/.runner-unwrap
# Put everything from temp directory into the proper output directory # Put everything from temp directory into the proper output directory
# Moving does *not* work, as mv doesn't allow to overwrite existing directories # Moving does *not* work, as mv doesn't allow to overwrite existing directories
mkdir -p $output mkdir -p $output
cp -r -f $GAMEDIR/* $output # This does not copy hidden files.
cp -rf $GAMEDIR/* $output
cp -rf $GAMEDIR/.runner-unwrapped $output
echo "" echo ""
echo "The operation was completed successfully. See you next mission!" echo "The operation was completed successfully. See you next mission!"