From 242863e85a9aa790e73ef16442b38f6b6967a23f Mon Sep 17 00:00:00 2001 From: root Date: Mon, 27 Feb 2023 17:32:00 +0300 Subject: [PATCH] =?UTF-8?q?TG-198=20Fix:=20=D0=B8=D1=81=D0=BF=D1=80=D0=B0?= =?UTF-8?q?=D0=B2=D0=BB=D0=B5=D0=BD=20=D0=B1=D0=B0=D0=B3=20=D1=81=20=D0=BE?= =?UTF-8?q?=D0=BF=D1=80=D0=B5=D0=B4=D0=B5=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5?= =?UTF-8?q?=D0=BC=20=D0=BF=D0=B0=D0=BA=D0=B5=D1=82=D0=B0=20=D1=82=D0=B5?= =?UTF-8?q?=D0=BA=D1=83=D1=89=D0=B5=D0=B3=D0=BE=20=D1=8F=D0=B4=D1=80=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pym/update/variables/update.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pym/update/variables/update.py b/pym/update/variables/update.py index f062638..e514aa8 100644 --- a/pym/update/variables/update.py +++ b/pym/update/variables/update.py @@ -1586,7 +1586,9 @@ class VariableClUpdateKernelPkg(ReadonlyVariable): def get(self): src_path = self.Get('cl_update_kernel_src_path') if src_path: - return + qfile = process('/usr/bin/qfile', '-vqC', src_path) + if qfile.success(): + return qfile.read().strip() return ""