mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
11 lines
199 B
Bash
11 lines
199 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
if [[ `git status --porcelain=2 locales/` ]]; then
|
||
|
git add locales/*
|
||
|
git commit -m "auto update translation"
|
||
|
git push $UPSTREAM_REPO HEAD:master
|
||
|
else
|
||
|
echo 'No changes'
|
||
|
fi
|