Skip to content

Commit a38fd05

Browse files
committed
CI: Use forward-slashes in paths (cross-platform)
Backslashes "\" in these paths can be interpreted as escape characters on Unix (Linux, macOS). Replace with forward-slashes, "/", which are interpreted the same (as subdirectory indicator) everywhere.
1 parent aa3c34b commit a38fd05

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

script/vsts/nightly-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
# This has to be done separately because VSTS inexplicably
55
# exits the script block after `npm install` completes.
66
- script: |
7-
cd script\vsts
7+
cd script/vsts
88
npm install
99
displayName: npm install
1010
- script: node script\vsts\get-release-version.js --nightly

script/vsts/pull-requests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
# This has to be done separately because VSTS inexplicably
77
# exits the script block after `npm install` completes.
88
- script: |
9-
cd script\vsts
9+
cd script/vsts
1010
npm install
1111
displayName: npm install
1212
- script: node script\vsts\get-release-version.js

script/vsts/release-branch-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
# This has to be done separately because VSTS inexplicably
1010
# exits the script block after `npm install` completes.
1111
- script: |
12-
cd script\vsts
12+
cd script/vsts
1313
npm install
1414
displayName: npm install
1515
- script: node script\vsts\get-release-version.js

0 commit comments

Comments
 (0)