@@ -227,6 +227,8 @@ jobs:
227227 run : |
228228 echo "Running on ${{matrix.nojit == true}}"
229229 echo "Running on ${{matrix.nojit == 'true'}}"
230+ echo "Running on ${{matrix.nojit == false}}"
231+ echo "Running on ${{matrix.nojit == 'false'}}"
230232 echo "Running on ${{matrix.nojit != true}}"
231233 echo "Running on ${{matrix.nojit != 'true'}}"
232234 echo "Running on ${{!matrix.nojit}}"
@@ -245,13 +247,13 @@ jobs:
245247 - name : restore permissions on ucm
246248 run : chmod +x ${{env.staging_dir}}/unison/unison
247249 - name : download racket lib
248- if : matrix.nojit && matrix.nojit != 'true'
250+ if : (! matrix.nojit)
249251 uses : actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4
250252 with :
251253 name : racket-lib
252254 path : ${{env.staging_dir}}/racket/
253255 - name : download unison-runtime
254- if : matrix.nojit && matrix.nojit != 'true'
256+ if : (! matrix.nojit)
255257 uses : actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4
256258 with :
257259 name : unison-runtime-${{matrix.os}}
@@ -260,7 +262,7 @@ jobs:
260262 # here we have the `if:` not because of the missing .exe on Windows,
261263 # nor the lack of need to chmod, but because /runtime/bin/ probably doesn't exist
262264 # due to differences in `raco distribute` on Windows vs macOS and Linux.
263- if : runner.os != 'Windows' && matrix.nojit && matrix.nojit != 'true'
265+ if : runner.os != 'Windows' && ! matrix.nojit
264266 run : chmod +x ${{env.staging_dir}}/runtime/bin/unison-runtime
265267 - name : download latest unison-local-ui
266268 run : |
0 commit comments