Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kljensen committed May 20, 2013
1 parent ffe6fa3 commit adc7c8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workout.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ for (( i = 0; i < ${NUM_EXERCISES}; i++ )); do
#
exercise=${EXERCISES[$i]}
say "$exercise for $exercise_interval seconds, Go!"
sleep 5
sleep $exercise_interval

# Rest or finish up
#
if [[ $i != $((${NUM_EXERCISES} - 1)) ]]; then
say "Rest $rest_interval seconds"
sleep 10
sleep $rest_interval
else
say "Done!"
fi
Expand Down

0 comments on commit adc7c8b

Please sign in to comment.