mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
8 lines
181 B
Bash
Executable file
8 lines
181 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# pull any pending changes from git repos
|
|
./pull-git
|
|
|
|
# upload changes to ftl templates
|
|
./update-ftl-templates
|
|
(cd ftl && git add core; git commit -m update; git push)
|