Corrections

This commit is contained in:
mez 2024-06-19 15:59:42 +01:00
parent 29ab288b65
commit b90ff645d4
3 changed files with 13 additions and 12 deletions

View file

@ -1,10 +1,10 @@
import variables
script = open("build.sh", "a")
script = open("build.sh", "w")
script.write("#!/usr/bin/env bash\n")
if variables.trackgames == True:
script.write("python3 generategames.py\nrclone copy gamebuild " + variables.rclonesiteroot + variables.serverpath + " -P")
script.write("python3 generategames.py\nrclone copy gamebuild " + variables.rclonesiteroot + variables.gameserverpath + " -P")
script.close()