console2svg 0.8.0 → 0.8.2
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/cli/console2svg.js +1 -1
- package/cli/install.js +2 -2
- package/package.json +1 -1
package/cli/console2svg.js
CHANGED
|
@@ -11,7 +11,7 @@ const binPath = path.join(__dirname, '..', 'dist', `console2svg${ext}`);
|
|
|
11
11
|
|
|
12
12
|
if (!fs.existsSync(binPath)) {
|
|
13
13
|
console.error('console2svg: binary not found.');
|
|
14
|
-
console.error('Reinstall the package or use
|
|
14
|
+
console.error('Reinstall the package or use a release archive.');
|
|
15
15
|
process.exit(1);
|
|
16
16
|
}
|
|
17
17
|
|
package/cli/install.js
CHANGED
|
@@ -21,7 +21,7 @@ const archSuffix =
|
|
|
21
21
|
|
|
22
22
|
if (!archSuffix) {
|
|
23
23
|
console.error(`console2svg: unsupported architecture: ${arch}`);
|
|
24
|
-
console.error('Use
|
|
24
|
+
console.error('Use a release archive or build from source for this platform.');
|
|
25
25
|
process.exit(1);
|
|
26
26
|
}
|
|
27
27
|
|
|
@@ -34,7 +34,7 @@ if (platform === 'win32') {
|
|
|
34
34
|
rid = `osx-${archSuffix}`;
|
|
35
35
|
} else {
|
|
36
36
|
console.error(`console2svg: unsupported platform: ${platform}`);
|
|
37
|
-
console.error('Use
|
|
37
|
+
console.error('Use a release archive or build from source for this platform.');
|
|
38
38
|
process.exit(1);
|
|
39
39
|
}
|
|
40
40
|
|