Skip to content

Commit b13f980

Browse files
committed
Add titles to build.sh
1 parent 610584d commit b13f980

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

build.sh

+4
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,11 @@ fi
4040

4141
mkdir -p logs
4242

43+
printf "\n=> Building godot-%s\n" "fedora"
4344
"$podman" build -t godot-fedora:${img_version} -f Dockerfile.base . 2>&1 | tee logs/base.log
4445

4546
podman_build() {
47+
printf "\n=> Building godot-%s\n" "$1"
4648
# You can add --no-cache as an option to podman_build below to rebuild all containers from scratch.
4749
"$podman" build \
4850
--build-arg img_version=${img_version} \
@@ -70,7 +72,9 @@ if [ ! -e "${files_root}"/MacOSX${OSX_SDK}.sdk.tar.xz ] || [ ! -e "${files_root}
7072
fi
7173

7274
echo "Building OSX and iOS SDK packages. This will take a while"
75+
printf "\n=> Building godot-%s\n" "xcode"
7376
podman_build xcode
77+
printf "\n=> Running godot-%s\n" "xcode"
7478
"$podman" run -it --rm \
7579
-v "${files_root}":/root/files:z \
7680
-e XCODE_SDKV="${XCODE_SDK}" \

0 commit comments

Comments
 (0)