Skip to content

Commit

Permalink
Fix leading space
Browse files Browse the repository at this point in the history
Signed-off-by: Sayali Gaikawad <gaiksaya@amazon.com>
  • Loading branch information
gaiksaya committed Jun 23, 2023
1 parent 4224d43 commit 673bb8d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/sign_workflow/signer_mac.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ def sign(self, artifact: str, basepath: Path, signature_type: str) -> None:
"-o",
signed_filename,
"-p",
"mac"
" -r",
"mac",
"-r",
str(self.overwrite)
]
self.git_repo.execute(" ".join(signing_cmd))
Expand Down
4 changes: 2 additions & 2 deletions src/sign_workflow/signer_windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ def sign(self, artifact: str, basepath: Path, signature_type: str) -> None:
"-o",
signed_filename,
"-p",
"windows"
" -r",
"windows",
"-r",
str(self.overwrite)
]
self.git_repo.execute(" ".join(signing_cmd))
Expand Down

0 comments on commit 673bb8d

Please sign in to comment.