Skip to content

Commit

Permalink
DEBUG: Remove debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
guyer committed Sep 7, 2023
1 parent 2bea1eb commit 73e89d1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ntd2d/ntd2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def main():
if pre_build_command != "":
with gha_utils.group("Executing pre-build-command", use_subprocess=True):
gha_utils.debug(f"pre-build-command: {pre_build_command}", use_subprocess=True)
subprocess.run(pre_build_command, check=True)
subprocess.run(pre_build_command, shell=True, check=True)

with gha_utils.group("Build HTML", use_subprocess=True):
build_command = os.environ['INPUT_BUILD-HTML-COMMAND']
Expand All @@ -39,7 +39,6 @@ def main():
build_command = os.environ['INPUT_BUILD-EPUB-COMMAND']
docs.build_docs(build_command=build_command)

gha_utils.echo(f"os.environ['NTD2D_PUSH_PAGES'] = {os.environ['NTD2D_PUSH_PAGES']}")
if os.environ['NTD2D_PUSH_PAGES'] == "true":
with gha_utils.group("Update Pages", use_subprocess=True):
repo = Repository(server_url=os.environ['GITHUB_SERVER_URL'],
Expand Down

0 comments on commit 73e89d1

Please sign in to comment.