-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathdocumentation-po-update
More file actions
executable file
·63 lines (45 loc) · 1.06 KB
/
documentation-po-update
File metadata and controls
executable file
·63 lines (45 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/bin/sh
# Fail on error or undefined variable
set -e
set -u
# Updates phpMyAdmin documentation
if [ -z "${1:-}" ] || [ ! -d "${1:-}" ]; then
echo "Usage documentation-po-update ~/localized_docs/"
exit 1
fi
WORKDIR="${1}"
if [ ! -d "$WORKDIR" ] ; then
git clone git@github.com:phpmyadmin/localized_docs.git "$WORKDIR"
fi
cd "$WORKDIR"
# Remove any possible changes
git reset --hard -q
# Update localized_docs repo
git pull -q
git submodule update --init -q
cd phpmyadmin
# Check for remote changes in phpmyadmin repo
oldrev=`git log -n 1 --format=format:%H @`
git fetch -q origin
newrev=`git log -n 1 --format=format:%H origin/master`
# Is there some diff?
if git diff --stat --exit-code $oldrev..$newrev -- docs/ ; then
exit 0
fi
cd ..
# Lock Weblate and commit changes
wlc lock
wlc push
# Pull changes from weblate
git pull
# Update phpmyadmin submodule
git submodule update --remote
git commit -a -m 'Updated phpMyAdmin repository'
# Update po files
make
git add .
git commit -m 'Update po files'
# Publish changes
git push
# Unlock Weblate
wlc unlock