Skip to content

Commit b75511e

Browse files
committed
[sc-126569] remove line continuations in script
Weird this works fine for me locally
1 parent ec0b121 commit b75511e

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

install_hls.sh

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
#!/usr/bin/env bash
22

3-
set -o errexit -o xtrace; \
4-
if [[ "$GHC_VERSION" == "9.2.4" ]]; then \
5-
if test -n "$HLS_VERSION"; then \
6-
ghcup compile hls -j4 -g 26a6ca607930b85bb1a2491b8deaf1a363c2e3df --ghc $GHC_VERSION --cabal-update; \
7-
else \
8-
ghcup install hls "$HLS_VERSION" --set; \
3+
set -o errexit -o xtrace;
4+
5+
if [[ "$GHC_VERSION" == "9.2.4" ]]; then
6+
if test -n "$HLS_VERSION"; then
7+
ghcup compile hls -j4 -g 26a6ca607930b85bb1a2491b8deaf1a363c2e3df --ghc "$GHC_VERSION" --cabal-update
8+
else
9+
ghcup install hls "$HLS_VERSION" --set
910
fi
10-
ghcup gc --hls-no-ghc; \
11-
haskell-language-server-wrapper --version; \
12-
fi
11+
ghcup gc --hls-no-ghc;
12+
haskell-language-server-wrapper --version
13+
fi

0 commit comments

Comments
 (0)