@aigne/cli 1.3.1-0 → 1.3.1-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.
- package/dist/commands/run.js +1 -0
- package/package.json +1 -1
package/dist/commands/run.js
CHANGED
|
@@ -99,6 +99,7 @@ async function downloadPackage(url, downloadDir) {
|
|
|
99
99
|
await downloadAndExtract(url, downloadDir);
|
|
100
100
|
}
|
|
101
101
|
async function extractPackage(downloadDir, dir) {
|
|
102
|
+
await mkdir(dir, { recursive: true });
|
|
102
103
|
if (await isV1Package(downloadDir)) {
|
|
103
104
|
await toAIGNEPackage(downloadDir, dir);
|
|
104
105
|
}
|