Skip to content

Commit

Permalink
FIXUP: Rename compressed_container_path envvar
Browse files Browse the repository at this point in the history
  • Loading branch information
apyrgio committed Mar 10, 2025
1 parent c0ff351 commit 5f4f82a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dangerzone/isolation_provider/qubes.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def is_qubes_native_conversion() -> bool:
# This disambiguates if it is running a Qubes targetted build or not
# (Qubes-specific builds don't ship the container image)

compressed_container_path = get_resource_path("container.tar")
return not os.path.exists(compressed_container_path)
container_image_path = get_resource_path("container.tar")
return not os.path.exists(container_image_path)
else:
return False

0 comments on commit 5f4f82a

Please sign in to comment.