Skip to content

Commit 1a74fb4

Browse files
committed
fix: Debian unstable release should use mongod binaries for version 92
Related #85
1 parent 600b00b commit 1a74fb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/MongoBinaryDownloadUrl.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export default class MongoBinaryDownloadUrl {
117117
getDebianVersionString(os: getos.Os): string {
118118
let name: string = 'debian';
119119
const release: number = parseFloat(os.release);
120-
if (release >= 9) {
120+
if (release >= 9 || os.release === 'unstable') {
121121
name += '92';
122122
} else if (release >= 8.1) {
123123
name += '81';

0 commit comments

Comments
 (0)