Skip to content

Commit

Permalink
CI: Fix wrongly defined command related double quotes on pipeline jobs
Browse files Browse the repository at this point in the history
When using 'single-cmd' and not using this double quotes structure it is
is producing 'did not find expected key' type of errors.
  • Loading branch information
ParaskP7 committed Jan 16, 2025
1 parent 30b5a2d commit ead005b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ steps:
steps:

- label: "🛠 Prototype Build: Mobile App"
command: ".buildkite/commands/prototype-build.sh" "WooCommerce"
command: ".buildkite/commands/prototype-build.sh WooCommerce"
if: build.pull_request.id != null
plugins: [$CI_TOOLKIT]

- label: "🛠 Prototype Build: Wear App"
command: ".buildkite/commands/prototype-build.sh" "WooCommerce-Wear"
command: ".buildkite/commands/prototype-build.sh WooCommerce-Wear"
if: build.pull_request.id != null
plugins: [$CI_TOOLKIT]

Expand Down

0 comments on commit ead005b

Please sign in to comment.