diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-06-06 18:46:14 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-06-06 18:46:14 +0100 |
commit | 1ec0c210ca2cbdb729a416e37a50d4b9a6a0dfa0 (patch) | |
tree | a29620cdf591da3861906f03f23d57160a24266e /src/backend/check.py | |
parent | ac0efd1bd6c703147bd8d3caedf489fab87d6131 (diff) |
populate __init__.py to simplify the client imports, ignore some irrelevant errors
Diffstat (limited to 'src/backend/check.py')
-rw-r--r-- | src/backend/check.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/check.py b/src/backend/check.py index eb786aa..2f46357 100644 --- a/src/backend/check.py +++ b/src/backend/check.py @@ -19,7 +19,7 @@ def portage(): localHash = subprocess.check_output(['git', 'rev-parse', '@']) remoteHash = subprocess.check_output(['git', 'rev-parse', '@{u}']) - gitExec = subprocess.Popen(['git', 'fetch', '--depth=1', 'origin'] + localBranch.decode().strip().split() + ['--quiet'], stdout=subprocess.PIPE) + gitExec = subprocess.Popen(['git', 'fetch', '--depth=1', 'origin'] + localBranch.decode().strip().split() + ['--quiet'], stdout=subprocess.PIPE, stderr=subprocess.DEVNULL) if not localHash.decode().strip() == remoteHash.decode().strip(): needsPortageSync = int(1) @@ -35,7 +35,7 @@ def overlay(): localHash = subprocess.check_output(['git', 'rev-parse', '@']) remoteHash = subprocess.check_output(['git', 'rev-parse', '@{u}']) - gitExec = subprocess.Popen(['git', 'fetch', '--depth=1', 'origin'] + localBranch.decode().strip().split() + ['--quiet'], stdout=subprocess.PIPE) + gitExec = subprocess.Popen(['git', 'fetch', '--depth=1', 'origin'] + localBranch.decode().strip().split() + ['--quiet'], stdout=subprocess.PIPE, stderr=subprocess.DEVNULL) if not localHash.decode().strip() == remoteHash.decode().strip(): needsOverlaySync = int(1) |