mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-18 23:44:59 +01:00
5a0c1cda22
This still won't work, still a WIP
16 lines
343 B
JavaScript
Executable File
16 lines
343 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
const fs = require('fs').promises;
|
|
|
|
async function main() {
|
|
try {
|
|
const webappDir = await fs.opendir('webapp');
|
|
return 0;
|
|
} catch (e) {
|
|
console.log("No 'webapp' directory found. Run 'yarn run fetch' or symlink manually");
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
main().then((ret) => process.exit(ret));
|