Comparing version 2.0.0 to 2.1.0
@@ -9,3 +9,3 @@ const path = require('path') | ||
module.exports = async (exe, options) => { | ||
let rcedit = path.resolve(__dirname, '..', 'bin', 'rcedit.exe') | ||
let rcedit = path.resolve(__dirname, '..', 'bin', process.arch === 'x64' ? 'rcedit-x64.exe' : 'rcedit.exe') | ||
const args = [exe] | ||
@@ -39,3 +39,3 @@ | ||
args.unshift(rcedit) | ||
rcedit = 'wine' | ||
rcedit = process.arch === 'x64' ? 'wine64' : 'wine' | ||
// Suppress "fixme:" stderr log messages | ||
@@ -42,0 +42,0 @@ spawnOptions.env.WINEDEBUG = '-all' |
{ | ||
"name": "rcedit", | ||
"version": "2.0.0", | ||
"version": "2.1.0", | ||
"description": "Node module to edit resources of exe", | ||
@@ -5,0 +5,0 @@ "main": "lib/rcedit.js", |
# node-rcedit | ||
[![CircleCI build status](https://circleci.com/gh/electron/node-rcedit/tree/master.svg?style=svg)](https://circleci.com/gh/electron/node-rcedit/tree/master) | ||
[![AppVeyor build status](https://ci.appveyor.com/api/projects/status/m880ovvfwukowyne/branch/master?svg=true)](https://ci.appveyor.com/project/electron-bot/node-rcedit/branch/master) | ||
@@ -6,0 +5,0 @@ Node module to edit resources of Windows executables. |
@@ -9,2 +9,2 @@ # Support for `node-rcedit` | ||
environment variable to `rcedit`, and it will print out information, including any `STDERR` output | ||
from `rcedit.exe`. | ||
from `rcedit.exe`/`rcedit-x64.exe`. |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2535186
11
42
3