diff options
-rwxr-xr-x | ztd | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |