diff options
Diffstat (limited to 'commit')
-rwxr-xr-x | commit | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -55,7 +55,7 @@ function is_git { return else ( cd "$1" && $GIT status &> /dev/null ) - + if [ "$?" != "128" ]; then return else @@ -68,13 +68,13 @@ function is_git { function is_svn { # simple svn folder checker # usage: is_svn <folder> - + if [ -d "$1/.svn" ]; then return else return 1 fi -} +} # Push to repositories function git_push { |