mirror of
https://github.com/flancian/garden.git
synced 2026-08-03 04:56:20 +00:00
7 lines
187 B
Bash
Executable File
7 lines
187 B
Bash
Executable File
#!/bin/bash
|
|
# As of [[2022-11-25]] I run this as a [[systemd]] service but I call it [[autopush]] and it lives one level up in the garden :)
|
|
while true; do
|
|
git pull
|
|
sleep 60
|
|
done
|