bcpkgfox 0.16.12__tar.gz → 0.16.14__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.12 → bcpkgfox-0.16.14}/PKG-INFO +1 -1
- {bcpkgfox-0.16.12 → bcpkgfox-0.16.14}/bcpkgfox/cli.py +8 -8
- {bcpkgfox-0.16.12 → bcpkgfox-0.16.14}/bcpkgfox.egg-info/PKG-INFO +1 -1
- {bcpkgfox-0.16.12 → bcpkgfox-0.16.14}/setup.py +1 -1
- {bcpkgfox-0.16.12 → bcpkgfox-0.16.14}/README.md +0 -0
- {bcpkgfox-0.16.12 → bcpkgfox-0.16.14}/bcpkgfox/__init__.py +0 -0
- {bcpkgfox-0.16.12 → bcpkgfox-0.16.14}/bcpkgfox/exec_file.py +0 -0
- {bcpkgfox-0.16.12 → bcpkgfox-0.16.14}/bcpkgfox/find_elements.py +0 -0
- {bcpkgfox-0.16.12 → bcpkgfox-0.16.14}/bcpkgfox/get_driver.py +0 -0
- {bcpkgfox-0.16.12 → bcpkgfox-0.16.14}/bcpkgfox/invoke_api.py +0 -0
- {bcpkgfox-0.16.12 → bcpkgfox-0.16.14}/bcpkgfox/system.py +0 -0
- {bcpkgfox-0.16.12 → bcpkgfox-0.16.14}/bcpkgfox.egg-info/SOURCES.txt +0 -0
- {bcpkgfox-0.16.12 → bcpkgfox-0.16.14}/bcpkgfox.egg-info/dependency_links.txt +0 -0
- {bcpkgfox-0.16.12 → bcpkgfox-0.16.14}/bcpkgfox.egg-info/entry_points.txt +0 -0
- {bcpkgfox-0.16.12 → bcpkgfox-0.16.14}/bcpkgfox.egg-info/requires.txt +0 -0
- {bcpkgfox-0.16.12 → bcpkgfox-0.16.14}/bcpkgfox.egg-info/top_level.txt +0 -0
- {bcpkgfox-0.16.12 → bcpkgfox-0.16.14}/setup.cfg +0 -0
|
@@ -391,19 +391,19 @@ class cli:
|
|
|
391
391
|
dist_path = os.path.join(self.current_dir, "dist")
|
|
392
392
|
new_path = os.path.join(self.current_dir, target_name)
|
|
393
393
|
|
|
394
|
-
if os.path.exists(dist_path)
|
|
394
|
+
if os.path.exists(dist_path):
|
|
395
395
|
os.rename(dist_path, new_path)
|
|
396
|
-
|
|
397
|
-
os.mkdir(f"{new_path}_temp")
|
|
398
|
-
time.sleep(0.5)
|
|
399
|
-
os.rename(new_path, f"{new_path}_temp\\{target_name}")
|
|
400
|
-
|
|
401
|
-
print(f"Renamed and moved 'dist' to '{new_path, f"{new_path}_temp\\{target_name}"}'")
|
|
396
|
+
print(f"Renamed 'dist' to '{target_name}'")
|
|
402
397
|
else:
|
|
403
398
|
print(f"{self.visuals.bold}{self.visuals.RD}Error: 'dist' directory not found!{self.visuals.RESET}")
|
|
404
399
|
sys.exit(1)
|
|
405
400
|
|
|
406
|
-
zip_path = shutil.make_archive(
|
|
401
|
+
zip_path = shutil.make_archive(
|
|
402
|
+
os.path.join(self.current_dir, target_name),
|
|
403
|
+
'zip',
|
|
404
|
+
root_dir=os.path.join(self.current_dir, f"{target_name}"),
|
|
405
|
+
base_dir=target_name
|
|
406
|
+
)
|
|
407
407
|
|
|
408
408
|
# Espera o sistema liberar o zip
|
|
409
409
|
wait = 0
|
|
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
|