feat: create output dir in script instead of gitignoring its readme
All checks were successful
continuous-integration/drone/pr Build is passing

This commit is contained in:
Darragh Elliott 2024-10-15 14:16:24 +01:00
parent 039481ad8c
commit 6ecd88897a
3 changed files with 2 additions and 5 deletions

3
.gitignore vendored
View File

@ -16,8 +16,7 @@ fsfe.org/search/index.js
fsfe.org/tags/tagged-*.en.xhtml
fsfe.org/tags/.tags.??.xml
# Local build stuff
output/*
!output/README.md
output
## Status dir stuff
status.fsfe.org/*/data*/*

View File

@ -20,6 +20,7 @@ while [ "$#" -gt 0 ]; do
;;
esac
done
mkdir -p ./output
./build/build_main.sh "$command" ./output/final --statusdir ./output/final/status.fsfe.org/fsfe.org/data
if [[ "$serve" ]]; then
python3 ./serve-websites.py

View File

@ -1,3 +0,0 @@
# Output
This folder contains the output of the build script when called with default args.