chore: fix shell scripts lint errors
This commit is contained in:
parent
5c919989ea
commit
d47fef0806
23 changed files with 359 additions and 228 deletions
|
|
@ -1,5 +1,11 @@
|
|||
#!/usr/bin/env -S bash -eux
|
||||
#!/usr/bin/env bash
|
||||
|
||||
npm_binaries () {
|
||||
command -v yarn > /dev/null && yarn bin || npm bin
|
||||
set -eux
|
||||
|
||||
npm_binaries() {
|
||||
if command -v yarn > /dev/null; then
|
||||
yarn bin
|
||||
else
|
||||
npm bin
|
||||
fi
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue