Add git pull acknowledge statement

This commit is contained in:
Strix 2023-10-14 22:38:06 +02:00
parent ab17f173d3
commit 022eebd5b7
No known key found for this signature in database
GPG key ID: 49B2E37B8915B774

View file

@ -15,6 +15,7 @@ class handler(BaseHTTPRequestHandler):
subprocess.call(['git', 'pull']) subprocess.call(['git', 'pull'])
with open('./lib/deploy.sh') as f: with open('./lib/deploy.sh') as f:
self.wfile.write(bytes(f.read(), 'utf-8')) 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(): def main():