Update index.js

This commit is contained in:
Anthony Poschen 2021-07-12 12:27:03 +10:00 committed by GitHub
parent 964ec77e2c
commit aba758cc4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ const exec = (cmd, args=[]) => new Promise((resolve, reject) => {
}); });
const main = async () => { const main = async () => {
await exec('bash', [path.join(__dirname, './entrypoint.sh')]); await exec('sh', [path.join(__dirname, './entrypoint.sh')]);
}; };
main().catch(err => { main().catch(err => {