Skip to content

Commit

Permalink
update donut args
Browse files Browse the repository at this point in the history
  • Loading branch information
its-a-feature committed Aug 31, 2024
1 parent 3f20a52 commit 42872a3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ async def build(self) -> BuildResponse:
stderr=asyncio.subprocess.PIPE)
stdout, stderr = await proc.communicate()

command = "{} {}".format(donutPath, output_path)
command = "{} -i {}".format(donutPath, output_path)
# need to go through one more step to turn our exe into shellcode
proc = await asyncio.create_subprocess_shell(command, stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE,
Expand Down

0 comments on commit 42872a3

Please sign in to comment.