Skip to content

Commit 70e609d

Browse files
committed
Fix vscode-dotty/compile on Windows
We cannot use "mkdir -p" because it doesn't work on Windows. Instead, add the vscode-dotty/out directory to git.
1 parent 9223fca commit 70e609d

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed

vscode-dotty/.vscodeignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ target/**
33
.vscode/**
44
.vscode-test/**
55
out/test/**
6+
out/.keep
67
test/**
78
src/**
89
**/*.map

vscode-dotty/out/.keep

Whitespace-only changes.

vscode-dotty/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"tsc": "./node_modules/.bin/tsc",
3636
"vscode:prepublish": "npm run update-all && ./node_modules/.bin/tsc -p ./",
3737
"compile": "./node_modules/.bin/tsc -p ./",
38-
"update-all": "npm install && node ./node_modules/vscode/bin/install && mkdir -p out && curl -L -o out/coursier https://github.com/coursier/coursier/raw/v1.0.0-RC3/coursier",
38+
"update-all": "npm install && node ./node_modules/vscode/bin/install && curl -L -o out/coursier https://github.com/coursier/coursier/raw/v1.0.0-RC3/coursier",
3939
"test": "node ./node_modules/vscode/bin/test"
4040
},
4141
"extensionDependencies": [

0 commit comments

Comments
 (0)