Skip to content

Commit 52a72ac

Browse files
committed
ci: quote the emsdk install step's run value
`run: "$MCPP" toolchain install emsdk 6.0.9` is not valid YAML -- a quoted scalar followed by trailing unquoted tokens -- and made the whole workflow file fail to parse. Wrap the value in single quotes.
1 parent 1d25c1c commit 52a72ac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎.github/workflows/ci.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1078,7 +1078,7 @@ jobs:
10781078
# the emsdk payload the way the local sandbox this member was
10791079
# developed against does.
10801080
- name: Install the emsdk payload for dist-web
1081-
run: "$MCPP" toolchain install emsdk 6.0.9
1081+
run: '"$MCPP" toolchain install emsdk 6.0.9'
10821082

10831083
- name: dist-web produces a static directory, and node runs it
10841084
working-directory: tests/web-consumer

0 commit comments

Comments
 (0)