Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit d457cad

Browse files
fix cmd syntax
1 parent 181e438 commit d457cad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ jobs:
5454
condition: and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags'))
5555
- ${{ if parameters.prerelease }}:
5656
- script: |
57-
$env:NODE_OPTIONS="--openssl-legacy-provider --no-experimental-fetch"
57+
set NODE_OPTIONS="--openssl-legacy-provider --no-experimental-fetch"
5858
node build/package.js --pre-release
5959
displayName: Build and pack extension
6060
- ${{ else }}:
6161
- script: |
62-
$env:NODE_OPTIONS="--openssl-legacy-provider --no-experimental-fetch"
62+
set NODE_OPTIONS="--openssl-legacy-provider --no-experimental-fetch"
6363
node build/package.js
6464
displayName: Build and pack extension
6565
- pwsh: |

0 commit comments

Comments
 (0)