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
8
8
exit 1
9
9
fi
10
10
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>"
13
13
echo
14
- echo " Example: $0 3.x f35 "
14
+ echo " Example: $0 3.x"
15
15
echo
16
16
echo " godot branch:"
17
17
echo " Informational, tracks the Godot branch these containers are intended for."
18
18
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>."
23
20
exit 1
24
21
fi
25
22
26
23
godot_branch=$1
27
- base_distro=$2
28
- img_version=$godot_branch -$base_distro
24
+ img_version=$godot_branch
29
25
files_root=" $( cd dirname " $0 " ; pwd) /files"
30
26
build_msvc=0
31
27
You can’t perform that action at this time.
0 commit comments