This commit is contained in:
Stefan Zweifel 2020-02-23 10:16:26 +01:00
parent 86f0c11c06
commit d69e5f0850
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ _switch_to_repository() {
}
_git_is_dirty() {
[[ -n "$(git status -s)" ]]
[ -n "$(git status -s)" ]
}
# Set up git user configuration

View File

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