Skip to content

Commit

Permalink
fix(ci): Removes -mac suffix from slug as OS is now it's own parameter (
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanRynne authored Aug 1, 2022
1 parent ea4d7b8 commit 1c39d04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/scripts/config-generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def getNewDeployJob(jobName: str):
slug = jobName.split("-build")[0]
isMac = slug.find("-mac") != -1
deployJob: Dict[str, Any] = {
"slug": slug,
"slug": slug.split("-mac")[0] if isMac else slug,
"name": slug + "-deploy",
"os": "OSX" if isMac else "Win",
"extension": "zip" if isMac else "exe",
Expand Down

0 comments on commit 1c39d04

Please sign in to comment.