10 lines
269 B
Python
10 lines
269 B
Python
import variables
|
|
|
|
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.gameserverpath + " -P")
|
|
|
|
script.close()
|