File tree 1 file changed +5
-9
lines changed 1 file changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -4,24 +4,20 @@ basedir=$(cd $(dirname "$0"); pwd)
4
4
5
5
source $basedir /setup.sh
6
6
7
- if [ -z " $1 " -o -z " $2 " ]; then
8
- echo " Usage: $0 <godot branch> <base distro> "
7
+ if [ -z " $1 " ]; then
8
+ echo " Usage: $0 <godot branch>"
9
9
echo
10
- echo " Example: $0 3.x f35 "
10
+ echo " Example: $0 3.x"
11
11
echo
12
12
echo " godot branch:"
13
13
echo " Informational, tracks the Godot branch these containers are intended for."
14
14
echo
15
- echo " base distro:"
16
- echo " Informational, tracks the base Linux distro these containers are based on."
17
- echo
18
- echo " The resulting image version will be <godot branch>-<base distro>."
15
+ echo " The resulting image version will be <godot branch>."
19
16
exit 1
20
17
fi
21
18
22
19
godot_branch=$1
23
- base_distro=$2
24
- img_version=$godot_branch -$base_distro
20
+ img_version=$godot_branch
25
21
files_root=" $basedir /files"
26
22
build_msvc=0
27
23
You can’t perform that action at this time.
0 commit comments