
A new version of `shellcheck` (I think?) brought us so new warnings and errors. To fix: - pass `--source-path` so we don't need to stop `shellcheck` trying to read sourced files every time - disable some more warnings/errors we don't care about fixing
11 lines
209 B
Bash
11 lines
209 B
Bash
#: * `casks`
|
|
#:
|
|
#: List all locally installable casks including short names.
|
|
#:
|
|
|
|
source "$HOMEBREW_LIBRARY/Homebrew/items.sh"
|
|
|
|
homebrew-casks() {
|
|
homebrew-items 'Formula' 's|/Casks/|/|' '^homebrew/cask'
|
|
}
|