BAKE_SILENT

This commit is contained in:
2019-09-21 20:14:08 -04:00
parent cdaf00a98e
commit 294c477972
+4 -1
View File
@@ -25,9 +25,12 @@ class Bakefile:
if not os.path.exists(path):
raise NoBakefileFound()
# Set environment variables for 'bake's that run underneath of us.
os.environ["PYTHONUNBUFFERED"] = "1"
os.environ["BAKEFILE_PATH"] = self.path
os.environ["BAKE_SKIP_DONE"] = "1"
os.environ["PYTHONUNBUFFERED"] = "1"
os.environ["BAKE_SILENT"] = 1
self.chunks
self._tasks = None