Skip to content

Commit

Permalink
fix: building debian packages with single binary application fails
Browse files Browse the repository at this point in the history
  • Loading branch information
fyhertz committed Jul 18, 2024
1 parent 84f31ee commit 7e34751
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wheel2deb/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@

def shell(args: List[str], cwd: Path | None = None) -> Tuple[str, int]:
result = subprocess.run(
args, cwd=cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT
args, cwd=cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, env={}
)
return result.stdout.decode("utf-8"), result.returncode

0 comments on commit 7e34751

Please sign in to comment.