Skip to content

Commit

Permalink
Bug 1943002 - part 7: Attribute stub installers a=RyanVM
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanLorenzo committed Jan 23, 2025
1 parent 9b34be7 commit 3d034ad
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,10 @@ def _get_output_path(

def _get_artifact_file_names(platform):
if platform.startswith("win"):
return ("target.installer.exe",)
file_names = ["target.installer.exe"]
if platform.startswith("win32"):
file_names.append("target.stub-installer.exe")
return tuple(file_names)
elif platform.startswith("macos"):
return ("target.dmg",)
else:
Expand Down

0 comments on commit 3d034ad

Please sign in to comment.