Skip to content
This repository was archived by the owner on Apr 24, 2021. It is now read-only.

Commit c2f1ade

Browse files
committed
Remove link
1 parent 9290660 commit c2f1ade

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

.circleci/config.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,11 @@ jobs:
130130
dune build
131131
- run:
132132
name: Test
133-
command: ./rescript-editor-support-link.exe --help
133+
command: ./_build/install/default/bin/rescript-editor-support.exe --help
134134
- run:
135135
name: Create tar file for executable
136136
command: |
137-
cp rescript-editor-support-link.exe rescript-editor-support.exe
137+
cp _build/install/default/bin/rescript-editor-support.exe rescript-editor-support.exe
138138
tar -czvf artifacts/bin-linux.tgz rescript-editor-support.exe
139139
- store_artifacts:
140140
path: artifacts/bin-linux.tgz
@@ -177,11 +177,11 @@ jobs:
177177
dune build
178178
- run:
179179
name: Test
180-
command: ./rescript-editor-support-link.exe --help
180+
command: ./_build/install/default/bin/rescript-editor-support.exe --help
181181
- run:
182182
name: Create tar file for executable
183183
command: |
184-
cp rescript-editor-support-link.exe rescript-editor-support.exe
184+
cp _build/install/default/bin/rescript-editor-support.exe rescript-editor-support.exe
185185
tar -czvf artifacts/bin-darwin.tgz rescript-editor-support.exe
186186
- store_artifacts:
187187
path: artifacts/bin-darwin.tgz
@@ -241,11 +241,11 @@ jobs:
241241
command: |
242242
eval $(opam env)
243243
dune build
244-
./_build/default/src/rescript-editor-support/RescriptEditorSupport.exe --help
244+
./_build/install/default/bin/rescript-editor-support.exe --help
245245
- run:
246246
name: Create tar file for executable
247247
command: |
248-
cp _build/default/src/rescript-editor-support/RescriptEditorSupport.exe rescript-editor-support.exe
248+
cp _build/install/default/bin/rescript-editor-support.exe rescript-editor-support.exe
249249
tar -czvf artifacts/bin-win32.tgz rescript-editor-support.exe
250250
- store_artifacts:
251251
path: artifacts/bin-win32.tgz

examples/example-project/.vscode/settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"editor.codeLens": true,
3-
"reason_language_server.location": "../../rescript-editor-support-link.exe",
3+
"reason_language_server.location": "../../_build/install/default/bin/rescript-editor-support.exe",
44
"reason_language_server.reloadOnChange": true,
55
"reason_language_server.per_value_codelens": true,
66
"reason_language_server.show_debug_errors": true,

rescript-editor-support-link.exe

-1
This file was deleted.

0 commit comments

Comments
 (0)