Skip to content

Commit edeb37a

Browse files
committed
build: rm base_distro
1 parent 06cc72f commit edeb37a

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

build.sh

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,20 @@ if [ -z $podman ]; then
88
exit 1
99
fi
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
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="$(cd dirname "$0"; pwd)/files"
3026
build_msvc=0
3127

0 commit comments

Comments
 (0)