Skip to content

Commit 8f0a1fe

Browse files
committed
fix: correct cli script name in entrypoint
Signed-off-by: Chris Gianelloni <[email protected]>
1 parent 37720d2 commit 8f0a1fe

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)