mirror of
https://git.ari.lt/ari.lt/blog.ari.lt.git
synced 2025-02-04 09:39:25 +01:00
69a70b0b51
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
11 lines
164 B
Bash
Executable file
11 lines
164 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
set -xe
|
|
|
|
main() {
|
|
git add -A
|
|
git commit -sam "update @ $(date)"
|
|
git push -u origin "$(git rev-parse --abbrev-ref HEAD)"
|
|
}
|
|
|
|
main "$@"
|