Skip to content

Commit

Permalink
bug(entrypoint): fix external cmd args quote error (#3135)
Browse files Browse the repository at this point in the history
  • Loading branch information
tianweidut committed Feb 2, 2024
1 parent e8ec3fd commit 2d3eaac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/scripts/sw-docker-entrypoint
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ run() {
--uri="${SW_MODEL_URI}" --version="${SW_JOB_VERSION}" \
--log-project="${SW_PROJECT_URI}" \
--forbid-snapshot \
${runtime_args} -- "${SW_TASK_EXTRA_CMD_ARGS}" || exit 1
${runtime_args} -- ${SW_TASK_EXTRA_CMD_ARGS} || exit 1
}

serve() {
Expand Down

0 comments on commit 2d3eaac

Please sign in to comment.