diff --git a/build.sh b/build.sh index c825246..25324c0 100755 --- a/build.sh +++ b/build.sh @@ -4,24 +4,20 @@ basedir=$(cd $(dirname "$0"); pwd) source $basedir/setup.sh -if [ -z "$1" -o -z "$2" ]; then - echo "Usage: $0 " +if [ -z "$1" ]; then + echo "Usage: $0 " echo - echo "Example: $0 3.x f35" + echo "Example: $0 3.x" echo echo "godot branch:" echo " Informational, tracks the Godot branch these containers are intended for." echo - echo "base distro:" - echo " Informational, tracks the base Linux distro these containers are based on." - echo - echo "The resulting image version will be -." + echo "The resulting image version will be ." exit 1 fi godot_branch=$1 -base_distro=$2 -img_version=$godot_branch-$base_distro +img_version=$godot_branch files_root="$basedir/files" build_msvc=0