remove an old script

This commit is contained in:
Sami Samhuri 2012-12-20 08:19:58 -08:00
parent 98e9811c8d
commit 3965af152b

View file

@ -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