20 lines
374 B
Bash
20 lines
374 B
Bash
#!/bin/sh
|
|
|
|
export PMGR=pnpm
|
|
|
|
if [ ! -x "$(command -v golangci-lint)" ]; then
|
|
echo "You must install golangci-lint."
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -x "$(command -v pnpm)" ]; then
|
|
export PMGR=yarn
|
|
if [ ! -x "$(command -v yarn)" ]; then
|
|
export PMGR=npm
|
|
if [ ! -x "$(command -v npm)" ]; then
|
|
echo "You must install a node package manager."
|
|
exit 1
|
|
fi
|
|
fi
|
|
fi
|