diff options
Diffstat (limited to 'add')
-rwxr-xr-x | add | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -42,7 +42,7 @@ if [ "$uc" -eq 0 -a "$mc" -eq 0 ]; then error "error: nothing untracked/modified" fi -if [ "$uc" -gt 0 -a "$mc" -gt 0 ]; then +if [ "$(($uc + $mc))" -gt 1 ]; then error "error: multiple untracked/modified files" fi |