13 lines
168 B
Bash
Executable file
13 lines
168 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
main() {
|
|
git add .
|
|
git commit -sa
|
|
git push -u origin "$(git rev-parse --abbrev-ref HEAD)"
|
|
|
|
./scripts/netlify.sh
|
|
}
|
|
|
|
main "$@"
|