@mandors/cli 0.0.8 → 0.0.9

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
@@ -57,32 +57,23 @@ async function install(options = {}) {
57
57
  */
58
58
  function useBundledBinary(platform, arch) {
59
59
  const filename = `mandor-${platform}-${arch}`;
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);
60
+ const bundledBinary = path.join(BUNDLE_DIR, filename);
64
61
 
65
62
  console.log(`DEBUG: Looking for binary for ${platform}-${arch}`);
66
63
  console.log(`DEBUG: BUNDLE_DIR: ${BUNDLE_DIR}`);
67
64
  console.log(`DEBUG: Files in BUNDLE_DIR: ${fs.readdirSync(BUNDLE_DIR).join(', ')}`);
68
65
 
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';
66
+ if (!fs.existsSync(bundledBinary)) {
67
+ console.log(`DEBUG: No bundled binary found at: ${bundledBinary}`);
68
+ return null;
78
69
  }
79
70
 
80
- if (!bundledBinary) {
81
- console.log(`DEBUG: No bundled binary found`);
71
+ if (!fs.statSync(bundledBinary).isFile()) {
72
+ console.log(`DEBUG: ${bundledBinary} is not a file`);
82
73
  return null;
83
74
  }
84
75
 
85
- console.log(`DEBUG: Found bundled binary via ${foundMethod}: ${bundledBinary}`);
76
+ console.log(`DEBUG: Found bundled binary: ${bundledBinary}`);
86
77
 
87
78
  const cacheDir = path.join(os.homedir(), '.mandor', 'bin');
88
79
  if (!fs.existsSync(cacheDir)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mandors/cli",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "Event-based task manager CLI for AI agent workflows",
5
5
  "main": "npm/lib/index.js",
6
6
  "bin": {