mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-01 21:31:36 +02:00
[misc] mono repo with translations GitOrigin-RevId: 1ed86d211f6a2031aafc3e7462687af0e957f9fd
11 lines
199 B
Bash
Executable File
11 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
|