mirror of
https://github.com/koush/scrypted.git
synced 2026-02-10 09:12:03 +00:00
6 lines
225 B
JavaScript
6 lines
225 B
JavaScript
#!/usr/bin/env node
|
|
const { spawn } = require('child_process');
|
|
const path = require('path');
|
|
const mainPath = path.join(__dirname, '../dist/scrypted-main.js');
|
|
spawn('node', ['--expose-gc', mainPath], { stdio: 'inherit' });
|