Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelrsweet committed Mar 7, 2023
1 parent 5fec561 commit d0129f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/makesrcdist
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ if (git status | grep -v makesrcdist | grep -q modified:); then
fi

# Get the source version...
if test $# = 1; then
if test $# = 0; then
version="$(date '+%Y.%m')"
elif test $# = 2; then
elif test $# = 1; then
version="$1"
else
echo "Usage: ./makesrcdist version"
Expand Down

0 comments on commit d0129f4

Please sign in to comment.