We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f245a5f commit a441406Copy full SHA for a441406
1 file changed
check-branch.sh
@@ -20,9 +20,9 @@ do
20
start=$(date +%s)
21
mvn clean verify > "$filename" 2>&1 && result=SUCCESS || result=FAILURE
22
end=$(date +%s)
23
- let time="end-start"
+ time=$(expr "$end" - "$start")
24
echo "$prefix $commit $result $time"
25
- let count="count+1"
+ count=$(expr "$count" + 1)
26
done
27
28
git checkout "$branch" > /dev/null 2>&1
0 commit comments