Some usability questions—it’s probably just me who...
# general
p
Some usability questions—it’s probably just me who doesn’t know the answer. In the example:
Copy code
pants run taxonomy_summary.py -- --taxonomy-path src/config/label_taxonomy_v1.json --output-html --template-path viewme_template.html
This script calls for two input files and produces one output file. As a user, I always get confused about where the file paths are; mentally, I think they’re in the current directory, but realistically, they shift to $MONOROOT as the default working directory. My questions are 1. How to make the working directory or
pants run
in the current directory (so the path that passing in makes more sense) 2. Am I doing the right thing overall?