mirror of
https://github.com/flame-engine/flame.git
synced 2025-10-27 19:13:31 +08:00
Update shebang on cspell scripts to be more env agnostic. This follows standard practices as seen in the [ysap guide](https://style.ysap.sh/): > Bash is not always located at /bin/bash, so use this line: > `#!/usr/bin/env bash` This is also in line with the other scripts on the repo.
4 lines
88 B
Bash
Executable File
4 lines
88 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
cspell --no-progress -c .github/cspell.json "**/*.{md,dart}" |