Skip to content

Commit

Permalink
Fix typo in usage
Browse files Browse the repository at this point in the history
  • Loading branch information
rdavid committed Nov 9, 2023
1 parent a23e63a commit bfbf824
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/bak
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
# Makes incremental backups from the first parameter to the second.
# shellcheck disable=SC1091,SC2034 # File not following, appears unused.
readonly \
BASE_APP_VERSION=0.9.20231021 \
BASE_APP_VERSION=0.9.20231109 \
BASE_MIN_VERSION=0.9.20230312
. base.sh
[ "$#" -eq 2 ] || die Usage: bak.sh source destination.
[ "$#" -eq 2 ] || die Usage: bak source destination.
readonly \
DST="$2" \
SRC="$1"
Expand Down
4 changes: 2 additions & 2 deletions app/flactomp3
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
# Copyright 2019-2023 David Rabkin
# shellcheck disable=SC1091,SC2034 # File not following, variable unused.
readonly \
BASE_APP_VERSION=0.9.20230312 \
BASE_APP_VERSION=0.9.20231109 \
BASE_MIN_VERSION=0.9.20230312
. base.sh
[ "$#" -eq 1 ] || die Usage: flactomp3.sh FILENAME.flac.
[ "$#" -eq 1 ] || die Usage: flactomp3 filename.
readonly \
SRC="$1" \
TAG="$BASE_WIP"/tags
Expand Down

0 comments on commit bfbf824

Please sign in to comment.