mirror of
https://github.com/koalaman/shellcheck
synced 2025-07-06 04:51:37 -07:00
12 lines
370 B
Bash
Executable file
12 lines
370 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# quickrun runs ShellCheck in an interpreted mode.
|
|
# This allows testing changes without recompiling.
|
|
|
|
runghc -isrc -idist/build/autogen shellcheck.hs "$@"
|
|
|
|
# Note: with new-build you can
|
|
#
|
|
# % cabal new-run --disable-optimization -- shellcheck "$@"
|
|
#
|
|
# This does build the executable, but as the optimisation is disabled,
|
|
# the build is quite fast.
|