Skip to content

Commit

Permalink
FIXUP: Suggest container runtime per platform
Browse files Browse the repository at this point in the history
  • Loading branch information
apyrgio committed Feb 6, 2025
1 parent 3e7b1ed commit a5a7bdf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions dev_scripts/reproduce-image.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@
)
IMAGE_NAME = "dangerzone.rocks/dangerzone"

if platform.system() in ["Darwin", "Windows"]:
CONTAINER_RUNTIME = "docker"
elif platform.system() == "Linux":
CONTAINER_RUNTIME = "podman"


def run(*args):
"""Simple function that runs a command, validates it, and returns the output"""
Expand Down

0 comments on commit a5a7bdf

Please sign in to comment.