9 lines
293 B
Python
9 lines
293 B
Python
import variables
|
|
|
|
buildscript = open("build.sh","w")
|
|
buildscript.write("#!/usr/bin/env bash\n\npython3 colors.py\n\nrclone copy build " + variables.servername + ":" + variables.serverpath + " -P -L")
|
|
buildscript.close()
|
|
|
|
if not os.path.exists("build/user.css"):
|
|
open("build/user.css","x")
|