Skip to content

Commit

Permalink
feat: suppress progress bar (#31)
Browse files Browse the repository at this point in the history
Add `--no-progress`
  • Loading branch information
knqyf263 authored Mar 11, 2021
1 parent bceef37 commit f5e208a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}

0 comments on commit f5e208a

Please sign in to comment.