fix(build): update tooling configuration and align nginx certificate generation with current dependencies
This commit is contained in:
@@ -11,7 +11,7 @@ import { ChildProcess } from 'child_process';
|
||||
export class NginxProcess {
|
||||
public started: boolean = false;
|
||||
public smartNginxRef: SmartNginx;
|
||||
private nginxChildProcess: ChildProcess;
|
||||
private nginxChildProcess?: ChildProcess;
|
||||
private smartshellInstance = new plugins.smartshell.Smartshell({
|
||||
executor: 'bash',
|
||||
});
|
||||
@@ -62,6 +62,6 @@ export class NginxProcess {
|
||||
* checks if nginx is in path
|
||||
*/
|
||||
public check(): boolean {
|
||||
return;
|
||||
return Boolean(this.nginxChildProcess);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user