one-winged-sinope/GameUpdate_linux.sh
2026-02-06 16:16:37 -06:00

13 lines
234 B
Bash

#!/bin/bash
# Enable error handling
set -e
# Copy patch.sh to a new file in gameupdate
cp "gameupdate/patch.sh" "gameupdate/patch2.sh"
# Run the new file
bash "gameupdate/patch2.sh"
# Delete the new file
rm "gameupdate/patch2.sh"