File tree Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -8,24 +8,20 @@ if [ -z $podman ]; then
88 exit 1
99fi
1010
11- if [ -z " $1 " -o -z " $2 " ]; then
12- echo " Usage: $0 <godot branch> <base distro> "
11+ if [ -z " $1 " ]; then
12+ echo " Usage: $0 <godot branch>"
1313 echo
14- echo " Example: $0 3.x f35 "
14+ echo " Example: $0 3.x"
1515 echo
1616 echo " godot branch:"
1717 echo " Informational, tracks the Godot branch these containers are intended for."
1818 echo
19- echo " base distro:"
20- echo " Informational, tracks the base Linux distro these containers are based on."
21- echo
22- echo " The resulting image version will be <godot branch>-<base distro>."
19+ echo " The resulting image version will be <godot branch>."
2320 exit 1
2421fi
2522
2623godot_branch=$1
27- base_distro=$2
28- img_version=$godot_branch -$base_distro
24+ img_version=$godot_branch
2925files_root=" $( cd dirname " $0 " ; pwd) /files"
3026build_msvc=0
3127
You can’t perform that action at this time.
0 commit comments