Browse Source
fix unbound variable error in scripts/run-docker.sh
build-on-device
Leonid Plyushch
5 years ago
No known key found for this signature in database
GPG Key ID: 45F2964132545795
1 changed files with
1 additions and
1 deletions
-
scripts/run-docker.sh
|
|
@ -17,7 +17,7 @@ USER=builder |
|
|
|
|
|
|
|
echo "Running container '$CONTAINER_NAME' from image '$TERMUX_BUILDER_IMAGE_NAME'..." |
|
|
|
|
|
|
|
if [ -n "$GITHUB_EVENT_PATH" ]; then |
|
|
|
if [ "${GITHUB_EVENT_PATH-x}" != "x" ]; then |
|
|
|
# On CI/CD tty may not be available. |
|
|
|
DOCKER_TTY="" |
|
|
|
else |
|
|
|