mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
Better error message if there is no accessSync (which there isn't on old node)
This commit is contained in:
parent
e5e4e901d8
commit
3fec3a7326
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ var skin = args._[0];
|
|||
try {
|
||||
fs.accessSync(path.join('src', 'skins', skin), fs.F_OK);
|
||||
} catch (e) {
|
||||
console.log("Skin "+skin+" not found");
|
||||
console.log("Skin "+skin+" not found: "+e);
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue