flashorm 2.1.0 → 2.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +1 -1
- package/package.json +1 -1
- package/scripts/install.js +1 -1
package/index.js
CHANGED
|
@@ -8,7 +8,7 @@ function getBinaryPath() {
|
|
|
8
8
|
const binaryPath = path.join(__dirname, 'bin', binaryName);
|
|
9
9
|
|
|
10
10
|
if (!fs.existsSync(binaryPath)) {
|
|
11
|
-
throw new Error('flash binary not found. Please reinstall: npm install -g
|
|
11
|
+
throw new Error('flash binary not found. Please reinstall: npm install -g flashorm');
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
return binaryPath;
|
package/package.json
CHANGED