Add build.sh

This commit is contained in:
redphx
2024-10-05 10:41:18 +07:00
parent d0f43db1fd
commit af41dc7c5e
2 changed files with 21 additions and 1 deletions

View File

@@ -200,7 +200,8 @@ async function main() {
await build(target, values['version']!!, values['variant'], config);
}
console.log('\n** Press Enter to build or Esc to exit');
console.log('')
// console.log('\n** Press Enter to build or Esc to exit');
}
function onKeyPress(data: any) {
@@ -213,6 +214,9 @@ function onKeyPress(data: any) {
}
main();
/*
process.stdin.setRawMode(true);
process.stdin.resume();
process.stdin.on('data', onKeyPress);
*/