if [ $# -ne 4

This commit is contained in:
sneurlax 2024-05-21 17:13:23 -05:00
parent ac38384e85
commit ef293ac68e

View file

@ -7,7 +7,7 @@ usage() {
}
# Check if no arguments are provided.
if [ -z "$VERSION" ] || [ -z "$BUILD_NUMBER" ]; then
if [ $# -ne 4 ]; then # if [ -z "$VERSION" ] || [ -z "$BUILD_NUMBER" ]; then
usage
fi