guacamole_keysyms/scripts/git.sh
Ari Archer a3988018f8
Add library stub and fix a typo in an enum name
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2022-07-23 19:10:33 +03:00

16 lines
213 B
Bash
Executable file

#!/usr/bin/env sh
set -e
main() {
git diff >/tmp/guacamole_keysyms.diff
git add -A
git commit -sa
git push -u origin "$(git rev-parse --abbrev-ref HEAD)"
sh scripts/publish.sh
}
main "$@"