@mandors/cli 0.0.6 → 0.0.8
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
|
@@ -57,18 +57,32 @@ async function install(options = {}) {
|
|
|
57
57
|
*/
|
|
58
58
|
function useBundledBinary(platform, arch) {
|
|
59
59
|
const filename = `mandor-${platform}-${arch}`;
|
|
60
|
-
|
|
60
|
+
|
|
61
|
+
// Try both: directory structure and direct binary file
|
|
62
|
+
const bundledBinaryDir = path.join(BUNDLE_DIR, filename, 'mandor');
|
|
63
|
+
const bundledBinaryFile = path.join(BUNDLE_DIR, filename);
|
|
61
64
|
|
|
62
|
-
console.log(`DEBUG:
|
|
65
|
+
console.log(`DEBUG: Looking for binary for ${platform}-${arch}`);
|
|
63
66
|
console.log(`DEBUG: BUNDLE_DIR: ${BUNDLE_DIR}`);
|
|
64
|
-
console.log(`DEBUG: Files in BUNDLE_DIR: ${fs.
|
|
67
|
+
console.log(`DEBUG: Files in BUNDLE_DIR: ${fs.readdirSync(BUNDLE_DIR).join(', ')}`);
|
|
65
68
|
|
|
66
|
-
|
|
67
|
-
|
|
69
|
+
let bundledBinary = null;
|
|
70
|
+
let foundMethod = '';
|
|
71
|
+
|
|
72
|
+
if (fs.existsSync(bundledBinaryDir)) {
|
|
73
|
+
bundledBinary = bundledBinaryDir;
|
|
74
|
+
foundMethod = 'directory structure';
|
|
75
|
+
} else if (fs.existsSync(bundledBinaryFile) && fs.statSync(bundledBinaryFile).isFile()) {
|
|
76
|
+
bundledBinary = bundledBinaryFile;
|
|
77
|
+
foundMethod = 'direct file';
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
if (!bundledBinary) {
|
|
81
|
+
console.log(`DEBUG: No bundled binary found`);
|
|
68
82
|
return null;
|
|
69
83
|
}
|
|
70
84
|
|
|
71
|
-
console.log(`DEBUG: Found bundled binary`);
|
|
85
|
+
console.log(`DEBUG: Found bundled binary via ${foundMethod}: ${bundledBinary}`);
|
|
72
86
|
|
|
73
87
|
const cacheDir = path.join(os.homedir(), '.mandor', 'bin');
|
|
74
88
|
if (!fs.existsSync(cacheDir)) {
|