Skip to content

Commit

Permalink
Try
Browse files Browse the repository at this point in the history
  • Loading branch information
adikhoff committed Oct 16, 2024
1 parent f698c03 commit 7bc806b
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,19 @@ def build():
print("trying os.system")
os.system("ls -la")

print("trying subprocess.run")
print("trying touch")
os.system("touch test.txt")
print("trying echo")
os.system("echo 'hello' >> test.txt")
print("trying mkdir")
os.system("mkdir _build")
print("trying cp")
os.system("cp test.txt _build")
print("trying cp")
os.system("cp test.txt _build/index.html")

os.system()

print("Printing dir again")
printDir(inputDir)
os.system("ls -la")

print(parser.epilog)

Expand Down

0 comments on commit 7bc806b

Please sign in to comment.