Skip to content

Commit

Permalink
Add more commands
Browse files Browse the repository at this point in the history
  • Loading branch information
adikhoff committed Oct 16, 2024
1 parent 4ce06c9 commit 7276a83
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,12 @@ def build():

printDir(inputDir);

subprocess.run(["ls", "-l"])
subprocess.run(["touch", "test.txt"])
subprocess.run(["echo", "hello >> test.txt"])
subprocess.run(["mkdir", "_build"])
subprocess.run(["cp", "test.txt _build"])

printDir(inputDir);

print(parser.epilog)

Expand Down

0 comments on commit 7276a83

Please sign in to comment.