From: Silvio Rhatto Date: Wed, 15 Mar 2017 16:04:31 +0000 (-0300) Subject: ZTD: better repository detection X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=86b4377edcaa2605c990f468b1c59654518d4058;p=scripts.git ZTD: better repository detection --- 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