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 committed Jan 13, 2021
1 parent 634b462 commit e4ffecf
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -172,7 +172,7 @@ export default class MongoBinaryDownloadUrl {
getDebianVersionString(os: LinuxOS): string {
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 e4ffecf

Please sign in to comment.