Skip to content

Commit 0014498

Browse files
authored
Merge pull request #22 from cloudstruct/fix/correct-cli-name
fix: correct cli script name in entrypoint
2 parents 37720d2 + 8f0a1fe commit 0014498

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/entrypoint

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if [[ -n ${NETWORK} ]]; then
77
fi
88
case ${1} in
99
run) exec /usr/local/bin/run-node ${@} ;;
10-
cli) exec /usr/local/bin/run-cli ${@} ;;
10+
cli) exec /usr/local/bin/run-client ${@} ;;
1111
*) echo "Nothing to do! Perhaps try [run|cli], or set NETWORK environment variable."; exit 1 ;;
1212
esac
1313

0 commit comments

Comments
 (0)