mirror of
https://github.com/koush/scrypted.git
synced 2026-03-06 03:12:00 +00:00
8 lines
198 B
JavaScript
8 lines
198 B
JavaScript
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
const check = path.join(__dirname, '../dist/scrypted-main.js');
|
|
if (!fs.existsSync(check)) {
|
|
throw new Error('missing file ' + check);
|
|
}
|