Skip to content

Commit 9136c59

Browse files
ibsenrunemattn
authored andcommitted
Only build FSharpLanguageServer
Before this commit, we would needlessly be building everything, including unit tests. By only building what we need, we speed up the process a bit and make it slightly more robust in case tests don't build (which, coincidentally, they do not at the time of writing).
1 parent 0f6c9f4 commit 9136c59

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

installer/install-fsharp-language-server.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ set -e
44

55
git clone --depth=1 https://github.com/fsprojects/fsharp-language-server .
66
npm install
7-
dotnet publish --configuration Release --output Publish
7+
dotnet tool install --global paket
8+
dotnet tool restore
9+
dotnet publish src/FSharpLanguageServer --configuration Release --output Publish
810

911
cat <<EOF >fsharp-language-server
1012
#!/bin/sh

0 commit comments

Comments
 (0)