mirror of
				https://github.com/Ylianst/MeshCentral.git
				synced 2025-03-09 15:40:18 +00:00 
			
		
		
		
	Added no-audit when installing NPM packages in the background.
This commit is contained in:
		
							parent
							
								
									a7f5b78139
								
							
						
					
					
						commit
						11fd5b39e8
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -470,7 +470,7 @@ function CreateMeshCentralServer(config, args) {
 | 
			
		|||
                const npmproxy = ((typeof obj.args.npmproxy == 'string') ? (' --proxy ' + obj.args.npmproxy) : '');
 | 
			
		||||
                const env = Object.assign({}, process.env); // Shallow clone
 | 
			
		||||
                if (typeof obj.args.npmproxy == 'string') { env['HTTP_PROXY'] = env['HTTPS_PROXY'] = env['http_proxy'] = env['https_proxy'] = obj.args.npmproxy; }
 | 
			
		||||
                const xxprocess = child_process.exec(npmpath + ' install --no-package-lock meshcentral' + version + npmproxy, { maxBuffer: Infinity, cwd: obj.parentpath, env: env }, function (error, stdout, stderr) {
 | 
			
		||||
                const xxprocess = child_process.exec(npmpath + ' install --no-audit --no-package-lock meshcentral' + version + npmproxy, { maxBuffer: Infinity, cwd: obj.parentpath, env: env }, function (error, stdout, stderr) {
 | 
			
		||||
                    if ((error != null) && (error != '')) { console.log('Update failed: ' + error); }
 | 
			
		||||
                });
 | 
			
		||||
                xxprocess.data = '';
 | 
			
		||||
| 
						 | 
				
			
			@ -3829,7 +3829,7 @@ function InstallModule(modulename, func, tag1, tag2) {
 | 
			
		|||
    // Get the working directory
 | 
			
		||||
    if ((__dirname.endsWith('/node_modules/meshcentral')) || (__dirname.endsWith('\\node_modules\\meshcentral')) || (__dirname.endsWith('/node_modules/meshcentral/')) || (__dirname.endsWith('\\node_modules\\meshcentral\\'))) { parentpath = require('path').join(__dirname, '../..'); }
 | 
			
		||||
 | 
			
		||||
    child_process.exec(npmpath + ` install --no-package-lock --no-optional ${modulename}`, { maxBuffer: 512000, timeout: 120000, cwd: parentpath }, function (error, stdout, stderr) {
 | 
			
		||||
    child_process.exec(npmpath + ` install --no-audit --no-package-lock --no-optional ${modulename}`, { maxBuffer: 512000, timeout: 120000, cwd: parentpath }, function (error, stdout, stderr) {
 | 
			
		||||
        if ((error != null) && (error != '')) {
 | 
			
		||||
            var mcpath = __dirname;
 | 
			
		||||
            if (mcpath.endsWith('\\node_modules\\meshcentral') || mcpath.endsWith('/node_modules/meshcentral')) { mcpath = require('path').join(mcpath, '..', '..'); }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue