aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-03-15 13:04:31 -0300
committerSilvio Rhatto <rhatto@riseup.net>2017-03-15 13:04:31 -0300
commit86b4377edcaa2605c990f468b1c59654518d4058 (patch)
treea31ea406bbdb6e6d1f361dfd03043c70c0c583c8
parentbb446e9030b1a5404868ff0cff2af0b6da9d29a2 (diff)
downloadscripts-86b4377edcaa2605c990f468b1c59654518d4058.tar.gz
scripts-86b4377edcaa2605c990f468b1c59654518d4058.tar.bz2
ZTD: better repository detection
-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