From 0d70bed2edb492587973f62f86bda934f1db3831 Mon Sep 17 00:00:00 2001 From: sickcodes <65906298+sickcodes@users.noreply.github.com> Date: Thu, 1 Jul 2021 08:33:40 +0000 Subject: [PATCH] Update fetch-macOS.py --- fetch-macOS.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fetch-macOS.py b/fetch-macOS.py index b540db9..c8d9a57 100755 --- a/fetch-macOS.py +++ b/fetch-macOS.py @@ -87,7 +87,7 @@ class ReplicationError(Exception): def cmd_exists(cmd): - proc subprocess.Popen("type " + cmd, shell=True, + return subprocess.Popen("type " + cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)