@boltic/auto-software 1.0.2 → 1.0.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/cli.js +2 -2
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -240,9 +240,9 @@ async function loadOrCreateConfig(dataDir) {
|
|
|
240
240
|
}
|
|
241
241
|
async function installBundleDeps() {
|
|
242
242
|
if (!IS_BUNDLED) return;
|
|
243
|
-
const
|
|
243
|
+
const sharedInBackend = path2.join(PROJECT_ROOT, "backend", "node_modules", "@autosoftware", "shared");
|
|
244
244
|
try {
|
|
245
|
-
await access2(
|
|
245
|
+
await access2(sharedInBackend, constants2.R_OK);
|
|
246
246
|
return;
|
|
247
247
|
} catch {
|
|
248
248
|
}
|