Skip to content

Commit a17f03b

Browse files
committed
build: rm base_distro
1 parent 46a2320 commit a17f03b

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
@@ -4,24 +4,20 @@ basedir=$(cd $(dirname "$0"); pwd)
44

55
source $basedir/setup.sh
66

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>"
99
echo
10-
echo "Example: $0 3.x f35"
10+
echo "Example: $0 3.x"
1111
echo
1212
echo "godot branch:"
1313
echo " Informational, tracks the Godot branch these containers are intended for."
1414
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>."
1916
exit 1
2017
fi
2118

2219
godot_branch=$1
23-
base_distro=$2
24-
img_version=$godot_branch-$base_distro
20+
img_version=$godot_branch
2521
files_root="$basedir/files"
2622
build_msvc=0
2723

0 commit comments

Comments
 (0)