populate-fully.sh: don't do anything if the repository does not exist
[config/vcsh.git] / .config / vcsh / hooks-available / populate-fully.sh
index 1b2c612..b038d1e 100755 (executable)
@@ -2,6 +2,9 @@
 
 set -e
 
+# If the vcsh repository does not exist, exit without doing anything.
+[ -d "$GIT_DIR" ] || exit 0
+
 # Only one vcsh instance at a time can have the working tree fully populated.
 LOCKDIR=/run/lock/vcsh