diff options
-rwxr-xr-x | computer-time-limit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/computer-time-limit b/computer-time-limit index 00d4c86..91b8bce 100755 --- a/computer-time-limit +++ b/computer-time-limit @@ -6,7 +6,7 @@ url='https://eckner.net/computer-time-limit.php' lock_file=~/.computer-time-limit.lock if [ -d "${dir}"'/.git' ] && [ $# -eq 0 ] && [ "$(stat -c%U "${dir}"'/.git')" = "$(whoami)" ]; then - git -C "${dir}" fetch --all -p 2>/dev/null + timeout 60 git -C "${dir}" fetch --all -p 2>/dev/null if [ -z "$(git -C "${dir}" status --porcelain)" ]; then git -C "${dir}" pull --ff-only 2>/dev/null exec "$0" '-' |