mirror of
https://github.com/mikefarah/yq.git
synced 2025-01-12 19:25:37 +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
|