summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcomputer-time-limit2
1 files changed, 1 insertions, 1 deletions
diff --git a/computer-time-limit b/computer-time-limit
index 45a7ecc..41dfc33 100755
--- a/computer-time-limit
+++ b/computer-time-limit
@@ -9,7 +9,7 @@ if ! flock -n 9; then
exit
fi
-if [ -d "${dir}"'/.git' ] && [ $# -eq 0 ]; then
+if [ -d "${dir}"'/.git' ] && [ $# -eq 0 ] && [ "$(stat -c%U "${dir}"'/.git')" = "$(whoami)" ]; then
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