aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xztd4
1 files changed, 2 insertions, 2 deletions
diff --git a/ztd b/ztd
index 52ac5fe..1961064 100755
--- a/ztd
+++ b/ztd
@@ -9,7 +9,7 @@ PROJECT="$1"
# Try to get there
if [ ! -z "$PROJECT" ]; then
cd $PROJECT
-elif [ ! -d '.git' ]; then
+elif ! git status &> /dev/null; then
cd
remind ~/.reminders | grep -v '^No reminders.$'
status
@@ -19,7 +19,7 @@ elif [ ! -d '.git' ]; then
fi
# Sync
-if [ -d '.git' ]; then
+if git status &> /dev/null; then
if which updates > /dev/null; then
updates
else