1
0
Fork 0

fix arch and aur packages

This commit is contained in:
cătălin 2024-04-20 11:01:19 +02:00
commit 43c002313d
No known key found for this signature in database
4 changed files with 20 additions and 14 deletions

View file

@ -9,8 +9,8 @@ set -euo pipefail
# Assert $ELDEN_RING_DIR/elden_ring.exe exists
# if it doesn't exist, exit successfully
if [ ! -f "$ELDEN_RING_DIR/elden_ring.exe" ]; then
echo "Already patched"
if [ ! -f "$ELDEN_RING_DIR/eldenring.exe" ]; then
echo "Already patched at $ELDEN_RING_DIR"
exit 0
fi
@ -20,5 +20,5 @@ mv "$ELDEN_RING_DIR/start_protected_game.exe" "$ELDEN_RING_DIR/start_protected_g
# Move $ELDEN_RING_DIR/elden_ring.exe to $ELDEN_RING_DIR/start_protected_game.exe
mv "$ELDEN_RING_DIR/elden_ring.exe" "$ELDEN_RING_DIR/start_protected_game.exe"
mv "$ELDEN_RING_DIR/eldenring.exe" "$ELDEN_RING_DIR/start_protected_game.exe"