Skip to content

Commit d573786

Browse files
committed
working on macOS build
1 parent 069a647 commit d573786

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

builder/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,7 @@ def process_output(myproc, out_to_screen, spinner, cmpl, out_queue):
341341

342342

343343
def spawn(cmd_, out_to_screen=True, spinner=False, env=None, cmpl=False):
344+
344345
if env is None:
345346
env = os.environ
346347

@@ -349,6 +350,11 @@ def spawn(cmd_, out_to_screen=True, spinner=False, env=None, cmpl=False):
349350

350351
cmd_ = ' && '.join(' '.join(c) for c in cmd_)
351352

353+
if 'GITHUB_RUN_ID' in os.environ:
354+
print(cmd_)
355+
spinner = False
356+
out_to_screen = True
357+
352358
que = queue.Queue()
353359

354360
p = subprocess.Popen(

0 commit comments

Comments
 (0)