@diggerhq/anyware 0.6.2 → 0.6.3
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/bin/{catty → anyware}
RENAMED
|
@@ -18,12 +18,12 @@ if (!goPlatform || !goArch) {
|
|
|
18
18
|
process.exit(1);
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
const binary = path.join(__dirname, `
|
|
21
|
+
const binary = path.join(__dirname, `anyware-${goPlatform}-${goArch}`);
|
|
22
22
|
|
|
23
23
|
try {
|
|
24
24
|
execFileSync(binary, process.argv.slice(2), { stdio: 'inherit' });
|
|
25
25
|
} catch (err) {
|
|
26
26
|
if (err.status !== undefined) process.exit(err.status);
|
|
27
|
-
console.error(`Failed to run
|
|
27
|
+
console.error(`Failed to run anyware: ${err.message}`);
|
|
28
28
|
process.exit(1);
|
|
29
29
|
}
|
package/bin/anyware-darwin-amd64
CHANGED
|
Binary file
|
package/bin/anyware-darwin-arm64
CHANGED
|
Binary file
|
package/bin/anyware-linux-amd64
CHANGED
|
Binary file
|
package/bin/anyware-linux-arm64
CHANGED
|
Binary file
|