Skip to content

Commit

Permalink
Fix name of command line argument.
Browse files Browse the repository at this point in the history
  • Loading branch information
KarsMulder committed Oct 8, 2024
1 parent a0049aa commit 6172c1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packaging/package_for_debian.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def has_program(program: str) -> bool:
os.makedirs(debian_path)


current_architecture = sp.check_output(["dpkg", "--check-architecture"]).decode("utf-8").strip()
current_architecture = sp.check_output(["dpkg", "--print-architecture"]).decode("utf-8").strip()
evsieve_version = sp.check_output([executable_path, "--version"]).decode("utf-8").strip()

ruststd_package = "libstd-rust-dev"
Expand Down

0 comments on commit 6172c1e

Please sign in to comment.