Skip to content

Commit f9d54cd

Browse files
authored
ci(dependabot): fix cargo config quoting (microsoft#632)
1 parent 5b60daa commit f9d54cd

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/dependabot-refresh-cargo-lockfiles.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ jobs:
8383
for manifest in "${!manifests[@]}"; do
8484
echo "Refreshing lockfile for $manifest"
8585
cargo metadata \
86-
--config build.rustc="rustc" \
87-
--config build.rustc-wrapper="" \
88-
--config build.rustc-workspace-wrapper="" \
86+
--config 'build.rustc="rustc"' \
87+
--config 'build.rustc-wrapper=""' \
88+
--config 'build.rustc-workspace-wrapper=""' \
8989
--format-version 1 \
9090
--all-features \
9191
--manifest-path "$manifest" > /dev/null
@@ -94,9 +94,9 @@ jobs:
9494
if [[ -n "${manifests[Cargo.toml]+x}" ]]; then
9595
echo "Refreshing lockfile for tests/ensure_no_std/Cargo.toml (thumbv7m-none-eabi)"
9696
cargo metadata \
97-
--config build.rustc="rustc" \
98-
--config build.rustc-wrapper="" \
99-
--config build.rustc-workspace-wrapper="" \
97+
--config 'build.rustc="rustc"' \
98+
--config 'build.rustc-wrapper=""' \
99+
--config 'build.rustc-workspace-wrapper=""' \
100100
--format-version 1 \
101101
--manifest-path tests/ensure_no_std/Cargo.toml \
102102
--filter-platform thumbv7m-none-eabi > /dev/null

0 commit comments

Comments
 (0)