Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

openfin-launcher

Package Overview
Dependencies
Maintainers
3
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

openfin-launcher - npm Package Compare versions

Comparing version 1.3.11 to 1.3.12

2

package.json
{
"name": "openfin-launcher",
"version": "1.3.11",
"version": "1.3.12",
"description": "OpenFin launcher",

@@ -5,0 +5,0 @@ "author": "Ricardo de Pena <ricardo.depena@gmail.com>",

@@ -46,5 +46,9 @@ var spawn = require('child_process').spawn;

} else {
//BUG: in linux there is a bug were '--no-sandbox' is not only required but it needs to be the only thing.
var args = assetUtilities.getRunningOs() !== assetUtilities.OS_TYPES.linux ? config.runtime.arguments : '--no-sandbox';
var of = spawn(runtimePath, ['--startup-url="' + combinedOpts.configPath + '" ', args], {
var args = config.runtime.arguments ? config.runtime.arguments.split(' ') : [];
//BUG: in linux there is a bug were '--no-sandbox' is required.
if (assetUtilities.getRunningOs() === assetUtilities.OS_TYPES.linux) {
args.push('--no-sandbox');
}
args.unshift('--startup-url="' + combinedOpts.configPath + '" ');
var of = spawn(runtimePath, args, {
encoding: 'utf8'

@@ -51,0 +55,0 @@ });

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc