update @ Fri Oct 6 20:53:06 EEST 2023

Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
This commit is contained in:
Ari Archer 2023-10-06 20:53:06 +03:00
parent a59b02b6e9
commit b07eef5abd
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: A50D5B4B599AF8A2
4 changed files with 14 additions and 1 deletions

View file

@ -1,5 +1,5 @@
[build] [build]
command = "rustup toolchain install stable && NOCLR=1 python3 ./scripts/blog.py static && rm -rf ./scripts/" command = "sh scripts/netlify.sh"
[[redirects]] [[redirects]]
from = "/git/*" from = "/git/*"

13
scripts/netlify.sh Normal file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env sh
set -xeu
main() {
rustup toolchain install stable
pip install -r requirements/requirements.txt
CI=1 NOCLR=1 python3 ./scripts/blog.py static
rm -rf ./scripts/ ./requirements/
}
main "$@"