- CLI binary: bin/gniza -> bin/gniza4cp - Install path: /usr/local/gniza4cp/ - Config path: /etc/gniza4cp/ - Log path: /var/log/gniza4cp/ - WHM plugin: gniza4cp-whm/ - cPanel plugin: cpanel/gniza4cp/ - AdminBin: Gniza4cp::Restore - Perl modules: Gniza4cpWHM::*, Gniza4cpCPanel::* - DaisyUI theme: gniza4cp - All internal references, branding, paths updated - Git remote updated to gniza4cp repo
14 lines
285 B
JavaScript
14 lines
285 B
JavaScript
#!/usr/bin/env node
|
|
|
|
const {spawn} = require('child_process');
|
|
|
|
if (process.env.npm_config_build_from_source === 'true') {
|
|
build();
|
|
}
|
|
|
|
function build() {
|
|
spawn('node-gyp', ['rebuild'], { stdio: 'inherit', shell: true }).on('exit', function (code) {
|
|
process.exit(code);
|
|
});
|
|
}
|