Skip to content

chore: Fix lefthook install script

Mark Florian requested to merge fix-prepare-script into main

This fixes an error logged after running yarn install:

$ if [[ ! "$CI" = "true" ]]; then yarn lefthook install; fi
/bin/sh: 1: [[: not found

The [[ ]] syntax is a bashism, whereas [ ] is much more portable across different shells.

Merge request reports

Loading