Enabled iterative development with SCRIPTS var

This commit is contained in:
Geoff Bourne
2020-06-19 11:05:32 -05:00
parent 2b7f923865
commit f5dde77efe
22 changed files with 79 additions and 51 deletions

View File

@@ -1,6 +1,6 @@
#!/bin/bash
. /start-utils
. ${SCRIPTS:-/}start-utils
if [ "${VERSION}" != "LATEST" ]; then
log "ERROR: Tunity server type only supports VERSION=LATEST"
@@ -24,4 +24,4 @@ fi
export TYPE=SPIGOT
# Continue to Final Setup
exec /start-finalSetup01World $@
exec ${SCRIPTS:-/}start-finalSetup01World $@