bcpkgfox 0.16.13__tar.gz → 0.16.15__tar.gz
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.
- {bcpkgfox-0.16.13 → bcpkgfox-0.16.15}/PKG-INFO +1 -1
- {bcpkgfox-0.16.13 → bcpkgfox-0.16.15}/bcpkgfox/cli.py +13 -6
- {bcpkgfox-0.16.13 → bcpkgfox-0.16.15}/bcpkgfox.egg-info/PKG-INFO +1 -1
- {bcpkgfox-0.16.13 → bcpkgfox-0.16.15}/setup.py +1 -1
- {bcpkgfox-0.16.13 → bcpkgfox-0.16.15}/README.md +0 -0
- {bcpkgfox-0.16.13 → bcpkgfox-0.16.15}/bcpkgfox/__init__.py +0 -0
- {bcpkgfox-0.16.13 → bcpkgfox-0.16.15}/bcpkgfox/exec_file.py +0 -0
- {bcpkgfox-0.16.13 → bcpkgfox-0.16.15}/bcpkgfox/find_elements.py +0 -0
- {bcpkgfox-0.16.13 → bcpkgfox-0.16.15}/bcpkgfox/get_driver.py +0 -0
- {bcpkgfox-0.16.13 → bcpkgfox-0.16.15}/bcpkgfox/invoke_api.py +0 -0
- {bcpkgfox-0.16.13 → bcpkgfox-0.16.15}/bcpkgfox/system.py +0 -0
- {bcpkgfox-0.16.13 → bcpkgfox-0.16.15}/bcpkgfox.egg-info/SOURCES.txt +0 -0
- {bcpkgfox-0.16.13 → bcpkgfox-0.16.15}/bcpkgfox.egg-info/dependency_links.txt +0 -0
- {bcpkgfox-0.16.13 → bcpkgfox-0.16.15}/bcpkgfox.egg-info/entry_points.txt +0 -0
- {bcpkgfox-0.16.13 → bcpkgfox-0.16.15}/bcpkgfox.egg-info/requires.txt +0 -0
- {bcpkgfox-0.16.13 → bcpkgfox-0.16.15}/bcpkgfox.egg-info/top_level.txt +0 -0
- {bcpkgfox-0.16.13 → bcpkgfox-0.16.15}/setup.cfg +0 -0
|
@@ -389,17 +389,24 @@ class cli:
|
|
|
389
389
|
target_name = name_dir[-1]
|
|
390
390
|
|
|
391
391
|
dist_path = os.path.join(self.current_dir, "dist")
|
|
392
|
-
|
|
392
|
+
temp_path = os.path.join(self.current_dir, f"{target_name}_temp")
|
|
393
|
+
inner_path = os.path.join(temp_path, target_name)
|
|
393
394
|
|
|
394
395
|
if os.path.exists(dist_path):
|
|
395
|
-
os.
|
|
396
|
-
|
|
396
|
+
if os.path.exists(temp_path):
|
|
397
|
+
shutil.rmtree(temp_path)
|
|
398
|
+
os.mkdir(temp_path)
|
|
399
|
+
shutil.move(dist_path, inner_path)
|
|
397
400
|
else:
|
|
398
401
|
print(f"{self.visuals.bold}{self.visuals.RD}Error: 'dist' directory not found!{self.visuals.RESET}")
|
|
399
402
|
sys.exit(1)
|
|
400
403
|
|
|
401
|
-
zip_path = shutil.make_archive(
|
|
402
|
-
|
|
404
|
+
zip_path = shutil.make_archive(
|
|
405
|
+
os.path.join(self.current_dir, target_name),
|
|
406
|
+
'zip',
|
|
407
|
+
root_dir=temp_path,
|
|
408
|
+
base_dir=target_name
|
|
409
|
+
)
|
|
403
410
|
|
|
404
411
|
# Espera o sistema liberar o zip
|
|
405
412
|
wait = 0
|
|
@@ -413,7 +420,7 @@ class cli:
|
|
|
413
420
|
if wait >= 600:
|
|
414
421
|
raise TimeoutError("Timeout while waiting for zip file to be accessible.")
|
|
415
422
|
|
|
416
|
-
shutil.rmtree(
|
|
423
|
+
shutil.rmtree(temp_path)
|
|
417
424
|
zip_log = True
|
|
418
425
|
|
|
419
426
|
except Exception as e:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|