@mandors/cli 0.0.5 → 0.0.7
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.
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/npm/lib/install.js
CHANGED
|
@@ -59,10 +59,27 @@ function useBundledBinary(platform, arch) {
|
|
|
59
59
|
const filename = `mandor-${platform}-${arch}`;
|
|
60
60
|
const bundledBinary = path.join(BUNDLE_DIR, filename, 'mandor');
|
|
61
61
|
|
|
62
|
+
console.log(`DEBUG: Checking bundled binary at: ${bundledBinary}`);
|
|
63
|
+
console.log(`DEBUG: BUNDLE_DIR: ${BUNDLE_DIR}`);
|
|
64
|
+
console.log(`DEBUG: Bundle dir exists: ${fs.existsSync(BUNDLE_DIR)}`);
|
|
65
|
+
|
|
66
|
+
if (fs.existsSync(BUNDLE_DIR)) {
|
|
67
|
+
console.log(`DEBUG: Files in BUNDLE_DIR: ${fs.readdirSync(BUNDLE_DIR).join(', ')}`);
|
|
68
|
+
const platformDir = path.join(BUNDLE_DIR, filename);
|
|
69
|
+
if (fs.existsSync(platformDir)) {
|
|
70
|
+
console.log(`DEBUG: Files in ${filename}: ${fs.readdirSync(platformDir).join(', ')}`);
|
|
71
|
+
} else {
|
|
72
|
+
console.log(`DEBUG: ${filename} directory does not exist`);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
62
76
|
if (!fs.existsSync(bundledBinary)) {
|
|
77
|
+
console.log(`DEBUG: Bundled binary not found`);
|
|
63
78
|
return null;
|
|
64
79
|
}
|
|
65
80
|
|
|
81
|
+
console.log(`DEBUG: Found bundled binary`);
|
|
82
|
+
|
|
66
83
|
const cacheDir = path.join(os.homedir(), '.mandor', 'bin');
|
|
67
84
|
if (!fs.existsSync(cacheDir)) {
|
|
68
85
|
fs.mkdirSync(cacheDir, { recursive: true });
|
|
@@ -75,6 +92,7 @@ function useBundledBinary(platform, arch) {
|
|
|
75
92
|
fs.chmodSync(dest, '755');
|
|
76
93
|
return dest;
|
|
77
94
|
} catch (e) {
|
|
95
|
+
console.log(`DEBUG: Failed to copy: ${e.message}`);
|
|
78
96
|
return null;
|
|
79
97
|
}
|
|
80
98
|
}
|