blob: b3342c22c7f60f15c57e71bb0f240b0140d4c749 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
[ "$1" = "info" ] && echo "reset the timer and lap counter" && exit 2
lap=0
running=0
update_time=1
original_state='foo' # prevent loading of state on disk
. "$core_path/update"
save_state
|