mirror of
https://github.com/mikefarah/yq.git
synced 2024-12-19 20:19:04 +00:00
11 lines
128 B
Bash
11 lines
128 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -o errexit
|
||
|
set -o pipefail
|
||
|
|
||
|
if command -v gosec &> /dev/null
|
||
|
then
|
||
|
gosec ${PWD}
|
||
|
else
|
||
|
./bin/gosec ${PWD}
|
||
|
fi
|