Commit 28450ada authored by Vitaly Lipatov's avatar Vitaly Lipatov

fix check_git_activity

parent b5c927ff
...@@ -22,7 +22,7 @@ do ...@@ -22,7 +22,7 @@ do
D=$(echo "$FILES"|grep -c ' D ') D=$(echo "$FILES"|grep -c ' D ')
Q=$(echo "$FILES"|grep -c '?? ') Q=$(echo "$FILES"|grep -c '?? ')
ALL=$(echo -n "$FILES"|grep -c '') ALL=$(echo -n "$FILES"|grep -c '')
if [ $ALL -ge $T ] if [ -z "$T" ] || [ $ALL -ge $T ]
then then
echo "$(basename $(pwd)) - $ALL changes: $M modified, $D deleted, $Q created" echo "$(basename $(pwd)) - $ALL changes: $M modified, $D deleted, $Q created"
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment