mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-04 17:49:24 +01:00
b6d8cd0751
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
16 lines
280 B
Bash
Executable file
16 lines
280 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
main() {
|
|
./scripts/sass.sh
|
|
|
|
find . -name '_*.css' -or \
|
|
-name '*.sass.css' -type f -exec rm -rfv {} \;
|
|
|
|
git add -A
|
|
git commit -sam "${m:-update @ $(date)}"
|
|
git push -u origin "$(git rev-parse --abbrev-ref HEAD)"
|
|
}
|
|
|
|
main "$@"
|