aboutsummaryrefslogtreecommitdiff
path: root/commit-updates
diff options
context:
space:
mode:
Diffstat (limited to 'commit-updates')
-rwxr-xr-xcommit-updates4
1 files changed, 2 insertions, 2 deletions
diff --git a/commit-updates b/commit-updates
index 2a71c1d..9fe77d7 100755
--- a/commit-updates
+++ b/commit-updates
@@ -11,10 +11,10 @@ GIT="hit"
# Check if param is a project
if [ ! -z "$PROJECT" ] && [ -z "$2" ] && ( cd $PROJECT &> /dev/null ); then
- if ! git status &> /dev/null; then
+ if ! $GIT status &> /dev/null; then
cd $PROJECT &> /dev/null
shift
- elif ! git status $PROJECT | grep -q "$PROJECT (new commits)"; then
+ elif ! $GIT status $PROJECT | grep -q "$PROJECT (new commits)"; then
cd $PROJECT &> /dev/null
shift
fi