mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-04 17:49:24 +01:00
4ab227330f
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
13 lines
213 B
Bash
Executable file
13 lines
213 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
main() {
|
|
rm -fv content/styles/config/_main.css
|
|
|
|
git add -A
|
|
git commit -sam "${m:-update @ $(date)}"
|
|
git push -u origin "$(git rev-parse --abbrev-ref HEAD)"
|
|
}
|
|
|
|
main "$@"
|