mirror of
https://forge.fsky.io/oneflux/omegafox.git
synced 2026-02-10 04:52:03 -08:00
Update launchServer.js
This commit is contained in:
parent
f5def98300
commit
133afbcdea
1 changed files with 2 additions and 2 deletions
|
|
@ -13,7 +13,7 @@ function collectData() {
|
|||
});
|
||||
|
||||
process.stdin.on('end', () => {
|
||||
resolve(JSON.parse(data));
|
||||
resolve(JSON.parse(Buffer.from(data, "base64").toString()));
|
||||
});
|
||||
});
|
||||
}
|
||||
|
|
@ -37,4 +37,4 @@ collectData().then((options) => {
|
|||
}).catch((error) => {
|
||||
console.error('Error collecting data:', error.message);
|
||||
process.exit(1); // Exit with error code
|
||||
});
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue