mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
fa594e575b
[misc] mono repo with translations GitOrigin-RevId: 1ed86d211f6a2031aafc3e7462687af0e957f9fd
10 lines
199 B
Bash
Executable file
10 lines
199 B
Bash
Executable file
#!/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
|