Skip to content

Commit

Permalink
Try with popen
Browse files Browse the repository at this point in the history
  • Loading branch information
adikhoff committed Oct 16, 2024
1 parent be39bb5 commit 9a8fd92
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,13 @@ def build():
os.system("ls -la")

print("See if we have Sphinx")
os.system("sphinx-build -b html ./_migrated/ _build/html")

fileStream = os.popen("sphinx-build -b html ./_migrated/ _build/html")
res = fileStream.read()
print(res)



print(parser.epilog)

if __name__ == "__main__":
Expand Down

0 comments on commit 9a8fd92

Please sign in to comment.