Skip to content

Commit

Permalink
Fix number of arguments in deploy script.
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosame committed Jun 2, 2021
1 parent ed48ab1 commit 911a356
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
#
# Deploy artifacts to temporary css4j.github.io repository.
#
if [[ $# -ne 2 ]] ; then
echo "No versions supplied (e.g. '3.2.0 1.0.0')"
if [[ $# -ne 1 ]] ; then
echo "No versions supplied (e.g. '3.5.1')"
exit 1
fi
REPODIR="${HOME}/www/css4j.github.io/maven"
Expand Down

0 comments on commit 911a356

Please sign in to comment.