mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-23 18:59:19 +00:00
fix(build-linux): delete Sys folder before copy
e444dc8
This commit is contained in:
parent
9421f0c56b
commit
123660e468
1 changed files with 3 additions and 2 deletions
|
@ -26,7 +26,8 @@ make -j$(nproc)
|
||||||
popd
|
popd
|
||||||
|
|
||||||
# Copy the Sys folder in
|
# Copy the Sys folder in
|
||||||
cp -r -n ${DATA_SYS_PATH} ${BINARY_PATH}
|
rm -rf ${BINARY_PATH}/Sys
|
||||||
|
cp -r ${DATA_SYS_PATH} ${BINARY_PATH}
|
||||||
|
|
||||||
touch ./build/Binaries/portable.txt
|
touch ./build/Binaries/portable.txt
|
||||||
|
|
||||||
|
@ -37,4 +38,4 @@ if [ "$1" == "playback" ]
|
||||||
echo "Copying Playback gecko codes"
|
echo "Copying Playback gecko codes"
|
||||||
rm -rf "${BINARY_PATH}/Sys/GameSettings" # Delete netplay codes
|
rm -rf "${BINARY_PATH}/Sys/GameSettings" # Delete netplay codes
|
||||||
cp -r "${PLAYBACK_CODES_PATH}/." "${BINARY_PATH}/Sys/GameSettings/"
|
cp -r "${PLAYBACK_CODES_PATH}/." "${BINARY_PATH}/Sys/GameSettings/"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue