Commit 64249eb2 authored by Kroese's avatar Kroese Committed by GitHub
Browse files

Typo

parent 59e873c3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -121,7 +121,7 @@ echo "elapsed: $elapsed"
if (( delay > elapsed )); then
  difference=$((delay-elapsed))
  echo "firstdiff: $difference"
  float=$(echo | awk -v diff=\""$(difference)\"" '{print diff * 0.001}')
  float=$(echo | awk -v diff=\""$difference\"" '{print diff * 0.001}')
  echo "Elapsed time: $elapsed, difference: $float"
  sleep $difference
fi