Rename build dir to export

This commit is contained in:
Ethan Paul 2021-04-24 22:49:27 -04:00
parent 3c5e06dd0d
commit c06db053ab
No known key found for this signature in database
GPG Key ID: D0E2CBF1245E92BF
3 changed files with 3 additions and 3 deletions

2
.gitignore vendored
View File

@ -1,3 +1,3 @@
build/
export/
.venv/
*.conf

View File

@ -1,3 +1,3 @@
clean:
rm --recursive --force build
rm --recursive --force export
rm --force nginx.conf

View File

@ -138,7 +138,7 @@ def main():
args = get_args()
cwd = Path.cwd().resolve()
output = cwd / "build"
output = cwd / "export"
explore = output / "explore"
with Path(args.config).resolve().open() as infile: