From ab89314a2c814481f6d44a27b0cdb31f92647bb4 Mon Sep 17 00:00:00 2001 From: mez Date: Fri, 2 May 2025 20:08:20 +0100 Subject: [PATCH] Transfer only successful builds? --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index efb6d4f..1ed269c 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import os 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.write("#!/usr/bin/env bash && python3 colors.py\n\nrclone copy build " + variables.servername + ":" + variables.serverpath + " -P -L") buildscript.close() if not os.path.exists("build/user.css"):