mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-18 23:44:59 +01:00
26 lines
500 B
TypeScript
26 lines
500 B
TypeScript
|
#!/usr/bin/env -S npx ts-node
|
||
|
|
||
|
/*
|
||
|
* Checks for the presence of a webapp, inspects its version and prints it
|
||
|
*/
|
||
|
|
||
|
import { versionFromAsar } from "./set-version";
|
||
|
|
||
|
async function main(): Promise<number> {
|
||
|
const version = await versionFromAsar();
|
||
|
console.log(version);
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
if (require.main === module) {
|
||
|
main()
|
||
|
.then((ret) => {
|
||
|
process.exit(ret);
|
||
|
})
|
||
|
.catch((e) => {
|
||
|
console.error(e);
|
||
|
process.exit(1);
|
||
|
});
|
||
|
}
|