You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import variables
|
|
|
|
script = open("build.sh", "a")
|
|
|
|
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.close()
|