Skip to content

Commit

Permalink
fix: Debian unstable release should use mongod binaries for version 92
Browse files Browse the repository at this point in the history
Related #85
  • Loading branch information
nodkz committed Oct 6, 2018
1 parent 600b00b commit 1a74fb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/MongoBinaryDownloadUrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export default class MongoBinaryDownloadUrl {
getDebianVersionString(os: getos.Os): string {
let name: string = 'debian';
const release: number = parseFloat(os.release);
if (release >= 9) {
if (release >= 9 || os.release === 'unstable') {
name += '92';
} else if (release >= 8.1) {
name += '81';
Expand Down

0 comments on commit 1a74fb4

Please sign in to comment.