Skip to content

Commit

Permalink
Require itch-setup@^1.8.0, closes #2106
Browse files Browse the repository at this point in the history
  • Loading branch information
fasterthanlime committed Sep 10, 2018
1 parent 214cea5 commit bceb2c4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main/broth/formulas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,10 @@ describeFormula("itch-setup", {
return channel;
},
getSemverConstraint: () => {
return null;
if (env.isCanary) {
return null;
}
return "^1.8.0";
},
});

Expand Down

0 comments on commit bceb2c4

Please sign in to comment.