diff options
Diffstat (limited to 'gromo')
-rwxr-xr-x | gromo | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -171,6 +171,8 @@ pp_seconds() { fi } +[ -f "$DING_FILE" ] || curl $DEFAULT_DING --create-dirs -so "$DING_FILE" + optspec="1hxltd:s:" while getopts "$optspec" optchar; do case "$optchar" in @@ -216,8 +218,6 @@ fi mkdir -p "$DATA_DIR" "$TODAY_DIR" "$(dirname "$STATE_FILE")" -[ -f "$DING_FILE" ] || curl $DEFAULT_DING --create-dirs -so "$DING_FILE" - if [ -f "$STATE_FILE" ]; then echo "Another instance is currently running; exiting (remove $STATE_FILE to override)" exit 1 |