snapctl 0.46.1__tar.gz → 0.46.3__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.
Potentially problematic release.
This version of snapctl might be problematic. Click here for more details.
- {snapctl-0.46.1 → snapctl-0.46.3}/PKG-INFO +1 -1
- {snapctl-0.46.1 → snapctl-0.46.3}/pyproject.toml +1 -1
- {snapctl-0.46.1 → snapctl-0.46.3}/snapctl/commands/byogs.py +2 -4
- {snapctl-0.46.1 → snapctl-0.46.3}/snapctl/commands/byosnap.py +2 -4
- {snapctl-0.46.1 → snapctl-0.46.3}/snapctl/config/constants.py +1 -1
- {snapctl-0.46.1 → snapctl-0.46.3}/LICENSE +0 -0
- {snapctl-0.46.1 → snapctl-0.46.3}/README.md +0 -0
- {snapctl-0.46.1 → snapctl-0.46.3}/snapctl/__init__.py +0 -0
- {snapctl-0.46.1 → snapctl-0.46.3}/snapctl/__main__.py +0 -0
- {snapctl-0.46.1 → snapctl-0.46.3}/snapctl/commands/__init__.py +0 -0
- {snapctl-0.46.1 → snapctl-0.46.3}/snapctl/commands/game.py +0 -0
- {snapctl-0.46.1 → snapctl-0.46.3}/snapctl/commands/generate.py +0 -0
- {snapctl-0.46.1 → snapctl-0.46.3}/snapctl/commands/release_notes.py +0 -0
- {snapctl-0.46.1 → snapctl-0.46.3}/snapctl/commands/snapend.py +0 -0
- {snapctl-0.46.1 → snapctl-0.46.3}/snapctl/config/__init__.py +0 -0
- {snapctl-0.46.1 → snapctl-0.46.3}/snapctl/config/endpoints.py +0 -0
- {snapctl-0.46.1 → snapctl-0.46.3}/snapctl/config/hashes.py +0 -0
- {snapctl-0.46.1 → snapctl-0.46.3}/snapctl/data/profiles/snapser-byosnap-profile.json +0 -0
- {snapctl-0.46.1 → snapctl-0.46.3}/snapctl/data/profiles/snapser-byosnap-profile.yaml +0 -0
- {snapctl-0.46.1 → snapctl-0.46.3}/snapctl/data/releases/beta-0.46.0.mdx +0 -0
- {snapctl-0.46.1 → snapctl-0.46.3}/snapctl/main.py +0 -0
- {snapctl-0.46.1 → snapctl-0.46.3}/snapctl/types/__init__.py +0 -0
- {snapctl-0.46.1 → snapctl-0.46.3}/snapctl/types/definitions.py +0 -0
- {snapctl-0.46.1 → snapctl-0.46.3}/snapctl/utils/__init__.py +0 -0
- {snapctl-0.46.1 → snapctl-0.46.3}/snapctl/utils/echo.py +0 -0
- {snapctl-0.46.1 → snapctl-0.46.3}/snapctl/utils/helper.py +0 -0
|
@@ -371,8 +371,7 @@ class ByoGs:
|
|
|
371
371
|
code=SNAPCTL_INPUT_ERROR)
|
|
372
372
|
# Check path
|
|
373
373
|
if self.resources_path:
|
|
374
|
-
docker_file_path = f"{
|
|
375
|
-
self.resources_path}/{self.docker_filename}"
|
|
374
|
+
docker_file_path = f"{self.resources_path}/{self.docker_filename}"
|
|
376
375
|
else:
|
|
377
376
|
docker_file_path = f"{self.path}/{self.docker_filename}"
|
|
378
377
|
|
|
@@ -388,8 +387,7 @@ class ByoGs:
|
|
|
388
387
|
code=SNAPCTL_INPUT_ERROR)
|
|
389
388
|
# Check path
|
|
390
389
|
if self.resources_path:
|
|
391
|
-
docker_file_path = f"{
|
|
392
|
-
self.resources_path}/{self.docker_filename}"
|
|
390
|
+
docker_file_path = f"{self.resources_path}/{self.docker_filename}"
|
|
393
391
|
else:
|
|
394
392
|
docker_file_path = f"{self.path}/{self.docker_filename}"
|
|
395
393
|
|
|
@@ -1523,14 +1523,12 @@ class ByoSnap:
|
|
|
1523
1523
|
file_save_path = os.path.join(
|
|
1524
1524
|
os.getcwd(), self.profile_filename)
|
|
1525
1525
|
file_written = ByoSnap._handle_output_file(
|
|
1526
|
-
f"{ByoSnap.PROFILE_FILES_PATH}{
|
|
1527
|
-
self.profile_filename}", file_save_path
|
|
1526
|
+
f"{ByoSnap.PROFILE_FILES_PATH}{self.profile_filename}", file_save_path
|
|
1528
1527
|
)
|
|
1529
1528
|
if file_written:
|
|
1530
1529
|
snapctl_success(
|
|
1531
1530
|
message="BYOSNAP Profile generation successful. " +
|
|
1532
|
-
f"{self.profile_filename} saved at {
|
|
1533
|
-
file_save_path}",
|
|
1531
|
+
f"{self.profile_filename} saved at {file_save_path}",
|
|
1534
1532
|
progress=progress,
|
|
1535
1533
|
no_exit=no_exit
|
|
1536
1534
|
)
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|