`bunzip2 --version` exits with a non-zero status on latest build of

Alpine Linux
pull/4/head
Scott Conway 2021-09-08 19:48:41 -04:00
parent bab4be2437
commit f86db032b8
1 changed files with 2 additions and 2 deletions

View File

@ -766,7 +766,7 @@ async function mainWorkerLoop() {
// make sure bunzip2 is available
try {
execSync(`bunzip2 --version`);
execSync(`bunzip2 --help`);
}
catch (exception) {
logger.error("bunzip2 is not installed or not available in environment path")
@ -800,4 +800,4 @@ lockfile.lock('retropilot_worker.lock', { realpath: false, stale: 90000, update:
}).catch((e) => {
console.error(e)
process.exit();
});
});