From 4131234b78949b506e36835c8d11b34d99d32cea Mon Sep 17 00:00:00 2001 From: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com> Date: Thu, 11 May 2023 12:22:15 -0700 Subject: [PATCH] Add notice on Ubuntu < 20.04 --- ts/updater/linux.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/updater/linux.ts b/ts/updater/linux.ts index dd94571aa..a0f42b8bc 100644 --- a/ts/updater/linux.ts +++ b/ts/updater/linux.ts @@ -5,7 +5,7 @@ import { version as osVersion } from 'os'; import type { LoggerType } from '../types/Logging'; -const MIN_UBUNTU_VERSION = '16.04'; +const MIN_UBUNTU_VERSION = '20.04'; export function getUbuntuVersion(): string | undefined { if (process.platform !== 'linux') {