 STARTUP │ (Re)initialized boot script
   PHASE │ build
   START │ ./plan.py
 SUCCESS │ ./plan.py
   START │ ./plan.py  # wd=sub
 SUCCESS │ ./plan.py  # wd=sub
   START │ cp -p example.txt sub/example.txt
 SUCCESS │ cp -p example.txt sub/example.txt
   START │ tr '[:lower:]' '[:upper:]' < example.txt > upper.txt  # wd=sub
 SUCCESS │ tr '[:lower:]' '[:upper:]' < example.txt > upper.txt  # wd=sub
   START │ cat ../plan.py  # wd=sub
 SUCCESS │ cat ../plan.py  # wd=sub
─────────────────────────────── Standard output ────────────────────────────────
#!/usr/bin/env python3
from stepup.core.api import copy, plan, static

static("example.txt")
static("sub/plan.py")
copy("example.txt", "sub/")
plan("./plan.py", workdir="sub")
────────────────────────────────────────────────────────────────────────────────
DIRECTOR │ Ran 5 job(s).
DIRECTOR │ Trying to remove 0 deletable file(s) and empty director(y|ies)
   PHASE │ watch
DIRECTOR │ Wrote graph to current_graph.txt, current_graph_provenance.dot and current_graph_dependency.dot
DIRECTOR │ See you!
