Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
agahkarakuzu committed Nov 21, 2024
1 parent 4e75ef8 commit 6226b1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions myst_libre/builders/myst_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ def __init__(self, hub=None, build_dir=None):
def setenv(self,key,value):
self.env_vars[key] = value

def build(self,*args):
def build(self,*args,user=None,group=None):
if self.hub is not None:
self.cprint(f'Starting MyST build {self.hub.jh_url}','yellow')
else:
self.cprint(f'Starting MyST build no exec.','yellow')
self.myst_client.build('build',*args)
self.myst_client.build('build',*args,user=user,group=group)

0 comments on commit 6226b1c

Please sign in to comment.