summaryrefslogtreecommitdiff
path: root/src/backend/check.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/check.py')
-rw-r--r--src/backend/check.py4
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)