Skip to content
Snippets Groups Projects
Commit 20e73cfe authored by Maciej Osyda's avatar Maciej Osyda
Browse files

Fixed parameters check

parent ce4efdc2
No related branches found
No related tags found
No related merge requests found
......@@ -3,11 +3,13 @@
if [ -z "$1" ]
then
echo "First argument should be a wordpress version (at least 3.7). No version supplied"
exit 1
fi
if [ -z "$2" ]
then
echo "Second argument should be a wordpress version. No version supplied"
exit 1
fi
# Wait for MySQL
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment