containdb 1.0.0 → 1.0.1

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.
@@ -26,7 +26,7 @@ if (!supported[platform] || !supported[platform][arch]) {
26
26
  }
27
27
 
28
28
  const binaryName = supported[platform][arch];
29
- const binaryPath = path.join(__dirname, 'bin', binaryName);
29
+ const binaryPath = path.join(__dirname, 'runner', binaryName);
30
30
 
31
31
  const child = spawn(binaryPath, process.argv.slice(2), { stdio: 'inherit' });
32
32
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "containdb",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "ContainDB CLI - A tool for managing Docker databases",
5
5
  "bin": {
6
6
  "containdb": "./InstallController.js"