Skip to content

Commit

Permalink
Merge pull request #1675 from openziti/fix-express-install-for-macos
Browse files Browse the repository at this point in the history
remove -s
  • Loading branch information
dovholuknf authored Jan 3, 2024
2 parents 1c50b95 + b89ff6a commit 06feff7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quickstart/docker/image/ziti-cli-functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function _setup_ziti_env_path {

function _setup_ziti_network {
if [[ "ran" != "${_setup_ziti_network_run}" ]]; then
if [[ "${ZITI_NETWORK-}" == "" ]]; then ZITI_NETWORK="$(hostname -s)"; export ZITI_NETWORK; else echo "ZITI_NETWORK overridden: ${ZITI_NETWORK}"; fi
if [[ "${ZITI_NETWORK-}" == "" ]]; then ZITI_NETWORK="$(hostname)"; export ZITI_NETWORK; else echo "ZITI_NETWORK overridden: ${ZITI_NETWORK}"; fi
_setup_ziti_network_run="ran"
fi
}
Expand Down

0 comments on commit 06feff7

Please sign in to comment.