Skip to content

Commit 554ae28

Browse files
committed
build: rm base_distro
1 parent 8f6852e commit 554ae28

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

build.sh

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,17 @@ fi
1111
if [ -z "$1" -o -z "$2" ]; then
1212
echo "Usage: $0 <godot branch> <base distro>"
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
2219
echo "The resulting image version will be <godot branch>-<base distro>."
2320
exit 1
2421
fi
2522

2623
godot_branch=$1
27-
base_distro=$2
28-
img_version=$godot_branch-$base_distro
24+
img_version=$godot_branch
2925
files_root=$(pwd)/files
3026
build_msvc=0
3127

0 commit comments

Comments
 (0)