@firestartr/cli 1.43.2-snapshot-2 → 1.43.2-snapshot-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/build/index.js +1 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
@@ -284162,7 +284162,7 @@ async function downloadFeatureZip(repo, featureName, version, owner = 'prefapp')
|
|
284162
284162
|
const randomExtractPath = `/tmp/${catalog_common.generic.randomString(20)}`;
|
284163
284163
|
console.log(`Extracting feature ${featureName} version ${version} to ${randomExtractPath}`);
|
284164
284164
|
await response.data;
|
284165
|
-
external_fs_.rmSync(
|
284165
|
+
external_fs_.rmSync(randomExtractPath, { recursive: true, force: true });
|
284166
284166
|
const zip = new (adm_zip_default())(randomZipTmpPath);
|
284167
284167
|
const mainEntry = zip.getEntries()[0].entryName;
|
284168
284168
|
console.log(`Main entry in zip: ${mainEntry}`);
|