mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 09:09:36 +02:00
[misc] update translations sync for monorepo GitOrigin-RevId: 794a9192212f7b63c040a08c42a1e9c6b3341609
19 lines
467 B
Bash
Executable File
19 lines
467 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
SCRIPT_PATH=$(realpath "${BASH_SOURCE[0]}")
|
|
SCRIPT_DIR=$(dirname "$SCRIPT_PATH")
|
|
WEB_DIR=$(dirname "$SCRIPT_DIR")
|
|
|
|
cd "$WEB_DIR"
|
|
|
|
if [[ `git status --porcelain=2 locales/` ]]; then
|
|
git add locales/*
|
|
git commit -m "auto update translation"
|
|
# Switch the cloudbuild clone from https to ssh authentication.
|
|
git remote set-url --push origin git@github.com:overleaf/internal.git
|
|
git push origin "HEAD:$BRANCH_NAME"
|
|
else
|
|
echo 'No changes'
|
|
fi
|