diff --git a/update-git-repo.sh b/update-git-repo.sh deleted file mode 100755 index 450158a..0000000 --- a/update-git-repo.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash - -dir="$1" -if [[ -d "$1/.git" ]]; then - cd "$1" - git clean -fq - git pull -else - echo "error: $1 is not a git repo" - exit 1 -fi -