Skip to content

Commit

Permalink
fix(MongoBinaryDownloadUrl): handle Debian "testing" release (#430)
Browse files Browse the repository at this point in the history
  • Loading branch information
sktt authored and hasezoey committed Jan 13, 2021
1 parent 98bc985 commit 9c2c834
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export class MongoBinaryDownloadUrl {
let name = 'debian';
const release: number = parseFloat(os.release);

if (release >= 10 || os.release === 'unstable') {
if (release >= 10 || ['unstable', 'testing'].includes(os.release)) {
name += '10';
} else if (release >= 9) {
name += '92';
Expand Down

0 comments on commit 9c2c834

Please sign in to comment.