Skip to content

Commit 911a356

Browse files
committed
Fix number of arguments in deploy script.
1 parent ed48ab1 commit 911a356

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deploy.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
#
33
# Deploy artifacts to temporary css4j.github.io repository.
44
#
5-
if [[ $# -ne 2 ]] ; then
6-
echo "No versions supplied (e.g. '3.2.0 1.0.0')"
5+
if [[ $# -ne 1 ]] ; then
6+
echo "No versions supplied (e.g. '3.5.1')"
77
exit 1
88
fi
99
REPODIR="${HOME}/www/css4j.github.io/maven"

0 commit comments

Comments
 (0)