File tree Expand file tree Collapse file tree 3 files changed +22
-23
lines changed
Expand file tree Collapse file tree 3 files changed +22
-23
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
2- set -e
32
4- podman=` which podman || true`
5-
6- if [ -z $podman ]; then
7- echo " podman needs to be in PATH for this script to work."
8- exit 1
9- fi
3+ source $( dirname " $0 " ) /setup.sh
104
115if [ -z " $1 " -o -z " $2 " ]; then
126 echo " Usage: $0 <godot branch> <base distro>"
@@ -74,7 +68,7 @@ if [ ! -e "${files_root}"/MacOSX${OSX_SDK}.sdk.tar.xz ] || [ ! -e "${files_root}
7468
7569 echo " Building OSX and iOS SDK packages. This will take a while"
7670 podman_build xcode
77- $podman run -it --rm \
71+ " $podman " run -it --rm \
7872 -v " ${files_root} " :/root/files:z \
7973 -e XCODE_SDKV=" ${XCODE_SDK} " \
8074 -e OSX_SDKV=" ${OSX_SDK} " \
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ set -e
4+
5+ podman=` which podman || true`
6+
7+ if [ -z " $podman " ]; then
8+ echo " podman needs to be in PATH for this script to work."
9+ exit 1
10+ fi
Original file line number Diff line number Diff line change 11#! /bin/bash
22
3- set -e
4-
5- podman=podman
6- if ! which $podman ; then
7- podman=docker
8- fi
3+ source $( dirname " $0 " ) /setup.sh
94
105img_version=$1
116registry=$2
@@ -19,13 +14,13 @@ if [ -z "${registry}" ]; then
1914 registry=registry.prehensile-tales.com
2015fi
2116
22- $podman push godot-export:${img_version} ${registry} /godot/export
23- $podman push godot-linux:${img_version} ${registry} /godot/linux
24- $podman push godot-windows:${img_version} ${registry} /godot/windows
25- $podman push godot-web:${img_version} ${registry} /godot/web
26- $podman push godot-xcode:${img_version} ${registry} /godot/xcode
17+ " $podman " push godot-export:${img_version} ${registry} /godot/export
18+ " $podman " push godot-linux:${img_version} ${registry} /godot/linux
19+ " $podman " push godot-windows:${img_version} ${registry} /godot/windows
20+ " $podman " push godot-web:${img_version} ${registry} /godot/web
21+ " $podman " push godot-xcode:${img_version} ${registry} /godot/xcode
2722
28- $podman push godot-android:${img_version} ${registry} /godot-private/android
29- $podman push godot-ios:${img_version} ${registry} /godot-private/ios
30- $podman push godot-osx:${img_version} ${registry} /godot-private/macosx
31- $podman push godot-msvc:${img_version} ${registry} /godot-private/uwp
23+ " $podman " push godot-android:${img_version} ${registry} /godot-private/android
24+ " $podman " push godot-ios:${img_version} ${registry} /godot-private/ios
25+ " $podman " push godot-osx:${img_version} ${registry} /godot-private/macosx
26+ " $podman " push godot-msvc:${img_version} ${registry} /godot-private/uwp
You can’t perform that action at this time.
0 commit comments