File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -104,8 +104,9 @@ jobs:
104
104
105
105
- run : cabal update
106
106
107
- # Need this to work around filepath length limits in Windows
108
- - name : Shorten binary names
107
+ # Work around for filepath length limits in Windows
108
+ - if : ${{ env.RUNNER_OS }} == 'Windows'
109
+ name : Shorten binary names
109
110
run : |
110
111
sed -i.bak -e 's/haskell-language-server/hls/g' \
111
112
-e 's/haskell_language_server/hls/g' \
Original file line number Diff line number Diff line change @@ -126,8 +126,9 @@ jobs:
126
126
127
127
- run : cabal update
128
128
129
- # Need this to work around filepath length limits in Windows
130
- - name : Shorten binary names
129
+ # Work around for filepath length limits in Windows
130
+ - if : ${{ env.RUNNER_OS }} == 'Windows'
131
+ name : Shorten binary names
131
132
run : |
132
133
sed -i.bak -e 's/haskell-language-server/hls/g' \
133
134
-e 's/haskell_language_server/hls/g' \
You can’t perform that action at this time.
0 commit comments