Fix docker invocation

pull/177/head
Paul Pacheco 2022-03-31 09:58:32 -05:00
parent 5a20409250
commit 27cb8492fa
1 changed files with 1 additions and 2 deletions

View File

@ -80,8 +80,7 @@ const Docker = {
${useHostNetwork ? '--net=host' : ''} \
${githubToken ? '--env USE_EXIT_CODE=false' : '--env USE_EXIT_CODE=true'} \
${image} \
-- \
/usr/bin/bash /entrypoint.sh` ;
/bin/bash /entrypoint.sh` ;
await exec(command, undefined, { silent });
},