Skip to content

Commit

Permalink
Fix codacy advisories
Browse files Browse the repository at this point in the history
  • Loading branch information
mikee47 committed Jan 20, 2022
1 parent ef3cb41 commit 4dc634e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/ci/testnotify.sh
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ mkdir -p "$(dirname "$testfile")"
curNanos=$(date +%s%N)
if [ -f "$testfile" ]; then
prevNanos=$(<"$testfile")
elapsedMillis=$(( ($curNanos - $prevNanos) / 1000000 ))
elapsedMillis=$(( (curNanos - prevNanos) / 1000000 ))
fi

case "$status" in
Expand Down

0 comments on commit 4dc634e

Please sign in to comment.