mirror of
https://git.ari.lt/ari.lt/blog.ari.lt.git
synced 2025-02-04 17:49:24 +01:00
82b3925c6c
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
13 lines
204 B
Bash
Executable file
13 lines
204 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
set -xe
|
|
|
|
main() {
|
|
python3 scripts/blog clean || true
|
|
|
|
git add -A
|
|
git commit -sam "update @ $(date)"
|
|
git push -u origin "$(git rev-parse --abbrev-ref HEAD)"
|
|
}
|
|
|
|
main "$@"
|