Skip to content

Commit

Permalink
working on macOS build
Browse files Browse the repository at this point in the history
  • Loading branch information
kdschlosser committed May 7, 2024
1 parent 069a647 commit d573786
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions builder/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,7 @@ def process_output(myproc, out_to_screen, spinner, cmpl, out_queue):


def spawn(cmd_, out_to_screen=True, spinner=False, env=None, cmpl=False):

if env is None:
env = os.environ

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

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

if 'GITHUB_RUN_ID' in os.environ:
print(cmd_)
spinner = False
out_to_screen = True

que = queue.Queue()

p = subprocess.Popen(
Expand Down

0 comments on commit d573786

Please sign in to comment.