From 022eebd5b72a4197a83b66f0637bde939eeb3632 Mon Sep 17 00:00:00 2001 From: Raine Date: Sat, 14 Oct 2023 22:38:06 +0200 Subject: [PATCH] Add git pull acknowledge statement --- lib/docker.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/docker.py b/lib/docker.py index 87967a9..08ad428 100644 --- a/lib/docker.py +++ b/lib/docker.py @@ -15,6 +15,7 @@ class handler(BaseHTTPRequestHandler): subprocess.call(['git', 'pull']) with open('./lib/deploy.sh') as f: self.wfile.write(bytes(f.read(), 'utf-8')) + self.wfile.write(bytes("# Git pull: " + str(time.time() - os.path.getmtime('./lib/deploy.sh')) + " seconds ago", 'utf-8')) def main():