mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-09-04 12:04:20 +08:00
Use /bin/sh friendly condition in env.sh (#3013)
This commit is contained in:
parent
c1a55e15a7
commit
e2d87fd569
1 changed files with 1 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
if [[ "$RELEASE_COMMAND" == "rpc" || "$RELEASE_COMMAND" == "remote" ]]; then
|
||||
if [ "$RELEASE_COMMAND" = "rpc" ] || [ "$RELEASE_COMMAND" = "remote" ]; then
|
||||
export RELEASE_DISTRIBUTION="name"
|
||||
if [ ! -z "${LIVEBOOK_NODE}" ]; then export RELEASE_NODE=${LIVEBOOK_NODE}; fi
|
||||
if [ ! -z "${LIVEBOOK_COOKIE}" ]; then export RELEASE_COOKIE=${LIVEBOOK_COOKIE}; fi
|
||||
|
|
Loading…
Add table
Reference in a new issue