Skip to content

Commit

Permalink
fix: CI looking for legacy 0.x version
Browse files Browse the repository at this point in the history
  • Loading branch information
jlacivita authored Nov 1, 2023
1 parent ea29f33 commit 923d02a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/version-specification/apis.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ const run = async (version, parsedArgs) => {

return new Promise( async (resolve, reject) => {
let legacy = major-1
while (legacy>major-parsedArgs['legacy-versions']-1 && legacy>=0) {
while (legacy>major-parsedArgs['legacy-versions']-1 && legacy>0) {
const v = `${legacy}.x`

// create a temporary npm package and install the version of Firebolt we want to grab
Expand Down

0 comments on commit 923d02a

Please sign in to comment.