FIXUP: Rename compressed_container_path envvar

This commit is contained in:
Alex Pyrgiotis 2025-03-10 14:48:33 +02:00
parent c0ff351a2e
commit 5f4f82a7a4
No known key found for this signature in database
GPG key ID: B6C15EBA0357C9AA

View file

@ -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