We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b3e47e commit bd76afbCopy full SHA for bd76afb
.devcontainer/Dockerfile
@@ -1,3 +1,7 @@
1
FROM haxe:4.3.6-gllr AS build-stage
2
3
-RUN mkdir $HAXE_COMPILER_DIR/plugins/ecso/
+RUN mkdir $HAXE_COMPILER_DIR/plugins/ecso/
4
+
5
+RUN set -ex ;\
6
+ cd $HAXE_COMPILER_DIR ;\
7
+ opam install ocaml-lsp-server ocamlformat
.vscode/tasks.json
@@ -10,7 +10,7 @@
10
"kind": "build",
11
"isDefault": true
12
},
13
- "command": "opam config exec -- make -s -j`nproc` STATICLINK=1 ADD_REVISION=1 PLUGIN=ecso plugin",
+ "command": "opam config exec -- make -s -j`nproc` STATICLINK=1 ADD_REVISION=1 && opam config exec -- make -s -j`nproc` STATICLINK=1 ADD_REVISION=1 PLUGIN=ecso plugin",
14
"options": {
15
"cwd": "${workspaceFolder}/../.."
16
}
0 commit comments