From 7291656f19cf5955cd0950f33a0eb929545e3b81 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Tue, 9 Nov 2021 16:24:10 +0100 Subject: [PATCH] CI: add new Python API to the linter's library, too --- ci/libcalamares/utils.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ci/libcalamares/utils.py b/ci/libcalamares/utils.py index 706e4a95a..b3676be0f 100644 --- a/ci/libcalamares/utils.py +++ b/ci/libcalamares/utils.py @@ -20,4 +20,8 @@ def target_env_call(_): return 0 def check_target_env_call(_): pass +def target_env_process_output(cmd, *args): return 0 + +def host_env_process_output(cmd, *args): return 0 + def mount(device, mountpoint, fstype, options): return 0