Merge remote-tracking branch 'upstream/issue-166'

This commit is contained in:
queila 2021-12-10 19:51:19 -05:00
commit a6565aedf8
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
set -eu

View File

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