Compare commits

...

1 Commits

Author SHA1 Message Date
Teppei Fukuda
f5e208a156 feat: suppress progress bar (#31)
Add `--no-progress`
2021-03-11 10:36:48 -08:00

View File

@@ -65,5 +65,5 @@ if [ $output ];then
ARGS="$ARGS --output $output"
fi
echo "Running trivy with options: " "${ARGS}" "${artifactRef}"
trivy ${scanType} $ARGS ${artifactRef}
echo "Running trivy with options: " --no-progress "${ARGS}" "${artifactRef}"
trivy ${scanType} --no-progress $ARGS ${artifactRef}