From ae008e687e07741d98bf3a68f9f64b9127cb3f37 Mon Sep 17 00:00:00 2001 From: Flancian <0@flancia.org> Date: Thu, 25 Mar 2021 23:12:33 +0100 Subject: [PATCH] Add autopull script --- bin/autopull | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 bin/autopull diff --git a/bin/autopull b/bin/autopull new file mode 100755 index 000000000..02bcab985 --- /dev/null +++ b/bin/autopull @@ -0,0 +1,5 @@ +#!/bin/bash +while true; do + git pull + sleep 60 +done