diff --git a/contrib/seeds/test-seeds.sh b/contrib/seeds/test-seeds.sh --- a/contrib/seeds/test-seeds.sh +++ b/contrib/seeds/test-seeds.sh @@ -25,7 +25,6 @@ echo "Environment Variables:" echo "BUILD_DIR Default: ${DEFAULT_BUILD_DIR}" echo "RPC_PORT Default: ${DEFAULT_RPC_PORT}" - exit 0 } : "${BUILD_DIR:=${DEFAULT_BUILD_DIR}}" @@ -40,12 +39,12 @@ ;; -h|--help) help_message - shift # shift past argument + exit 0 ;; *) echo "Unknown argument: $1" help_message - shift # shift past argument + exit 1 ;; esac done