Fix docker host bug (#329)

* Update entrypoint.sh

should be a value not boolean

* Update action.yaml

add example

* Update README.md
This commit is contained in:
Lukas Gravley
2024-04-04 23:59:05 -05:00
committed by GitHub
parent 840deb4908
commit 207cd40078
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -168,7 +168,7 @@ if [ "$hideProgress" == "true" ];then
ARGS="$ARGS --quiet"
SARIF_ARGS="$SARIF_ARGS --quiet"
fi
if [ "$dockerHost" == "true" ];then
if [ $dockerHost ];then
ARGS="$ARGS --docker-host $dockerHost"
fi