diff --git a/cours/deploy.py b/cours/deploy.py new file mode 100644 index 0000000..9e93f8b --- /dev/null +++ b/cours/deploy.py @@ -0,0 +1,9 @@ +import subprocess + + +def main(): + subprocess.run("rsync --itemize-changes build/*.pdf dedi3:/srv/nginx/e2l/python/", shell=True) + + +if __name__ == "__main__": + main()