aboutsummaryrefslogtreecommitdiff
path: root/fetch-macOS.py
diff options
context:
space:
mode:
authorsickcodes <[email protected]>2021-07-01 08:33:40 +0000
committerGitHub <[email protected]>2021-07-01 08:33:40 +0000
commit0d70bed2edb492587973f62f86bda934f1db3831 (patch)
treea57adfe3b535eb8817ab87f3e3e1d092c6fbe5a6 /fetch-macOS.py
parentChange call function to Popen (diff)
downloaddocker-osx-0d70bed2edb492587973f62f86bda934f1db3831.tar.xz
docker-osx-0d70bed2edb492587973f62f86bda934f1db3831.zip
Update fetch-macOS.py
Diffstat (limited to 'fetch-macOS.py')
-rwxr-xr-xfetch-macOS.py2
1 files changed, 1 insertions, 1 deletions
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)