We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f6852e commit 554ae28Copy full SHA for 554ae28
build.sh
@@ -11,21 +11,17 @@ fi
11
if [ -z "$1" -o -z "$2" ]; then
12
echo "Usage: $0 <godot branch> <base distro>"
13
echo
14
- echo "Example: $0 3.x f35"
+ echo "Example: $0 3.x"
15
16
echo "godot branch:"
17
echo " Informational, tracks the Godot branch these containers are intended for."
18
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>."
23
exit 1
24
fi
25
26
godot_branch=$1
27
-base_distro=$2
28
-img_version=$godot_branch-$base_distro
+img_version=$godot_branch
29
files_root=$(pwd)/files
30
build_msvc=0
31
0 commit comments