Skip to content

Commit 7782924

Browse files
committed
Merge branch 'staging' into v5.x
2 parents 61d736e + fd4dc6f commit 7782924

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

bench/utils/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,9 @@ def check_latest_version():
132132
if VERSION.endswith("dev"):
133133
return
134134

135+
if os.environ.get("FRAPPE_DOCKER_BUILD"):
136+
return
137+
135138
import requests
136139
from semantic_version import Version
137140

bench/utils/bench.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,9 @@ def restart_supervisor_processes(bench_path=".", web_workers=False, _raise=False
315315
if which("supervisorctl") is None:
316316
return
317317

318+
if os.environ.get("FRAPPE_DOCKER_BUILD"):
319+
return
320+
318321
from bench.bench import Bench
319322

320323
bench = Bench(bench_path)

0 commit comments

Comments
 (0)