Skip to content

Commit 0fa1efa

Browse files
committed
Use new function to allow for empty entrypoint
1 parent 7ecdae4 commit 0fa1efa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

commands/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ if [[ "$(plugin_read_config RM "true")" == "true" ]]; then
285285
fi
286286

287287
# Optionally sets --entrypoint
288-
if [[ -n "$(plugin_read_config ENTRYPOINT)" ]] ; then
288+
if plugin_config_exists ENTRYPOINT ; then
289289
run_params+=(--entrypoint)
290290
run_params+=("$(plugin_read_config ENTRYPOINT)")
291291
fi

0 commit comments

Comments
 (0)