aboutsummaryrefslogtreecommitdiff
path: root/commit-updates
diff options
context:
space:
mode:
Diffstat (limited to 'commit-updates')
-rwxr-xr-xcommit-updates14
1 files changed, 7 insertions, 7 deletions
diff --git a/commit-updates b/commit-updates
index 303bee0..a6aa245 100755
--- a/commit-updates
+++ b/commit-updates
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# Commit both on git and svn
+# Commit updates
#
# Parameters
@@ -9,14 +9,14 @@ ARGS="$*"
# Simply update commit
if git status &> /dev/null; then
if [ ! -z "$1" ]; then
- if [ -e '.git' ]; then
- commit "Updates $*"
- elif [ -d "$1" ]; then
- ( cd $1 && commit "Updates $(basename $1)" )
- fi
+ commit "Updates $*"
else
commit "Updates $(basename `pwd`)"
fi
else
- mr commit -m "Updates"
+ if [ ! -z "$1" ] && [ -d "$1" ]; then
+ ( cd $1 &> /dev/null && commit "Updates $(basename $1)" )
+ else
+ mr commit -m "Updates"
+ fi
fi