snyk-labs / snyk-bulk

Collection of docker entrypoints that facilitate snyk '--all-projects'-style bulk scanning
Apache License 2.0
9 stars 12 forks source link

Fix: Find globbing patterns would blow up #23

Closed mrzarquon closed 3 years ago

mrzarquon commented 3 years ago

Because of bash shell expansion being on by default, if the folders we didn't want to include in our find actually existed on the path, it could cause find command to blowup

This fixes that by wrapping every find statement as: set -o noglob FIND command set +o noglob