Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: rm base_distro #120

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 5 additions & 9 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,20 @@ basedir=$(cd $(dirname "$0"); pwd)

source $basedir/setup.sh

if [ -z "$1" -o -z "$2" ]; then
echo "Usage: $0 <godot branch> <base distro>"
if [ -z "$1" ]; then
echo "Usage: $0 <godot branch>"
echo
echo "Example: $0 3.x f35"
echo "Example: $0 3.x"
echo
echo "godot branch:"
echo " Informational, tracks the Godot branch these containers are intended for."
echo
echo "base distro:"
echo " Informational, tracks the base Linux distro these containers are based on."
echo
echo "The resulting image version will be <godot branch>-<base distro>."
echo "The resulting image version will be <godot branch>."
exit 1
fi

godot_branch=$1
base_distro=$2
img_version=$godot_branch-$base_distro
img_version=$godot_branch
files_root="$basedir/files"
build_msvc=0

Expand Down