diff --git a/backend/scripts/prepare-release.sh b/backend/scripts/prepare-release.sh index 5cc12247f..09c17ba2f 100644 --- a/backend/scripts/prepare-release.sh +++ b/backend/scripts/prepare-release.sh @@ -1,6 +1,7 @@ #!/usr/bin/env bash -if [ ! -d "$1" ] || [ ! -d "$2" ]; then - echo "Expecting path to backend and destination directory" + +if [ "$#" -ne 0 ]; then + echo "Expecting parameters: 1=path to backend; 2=destination directory" exit 1 fi