mirror of
https://github.com/flameshikari/outline-ru.git
synced 2026-06-13 04:05:10 +03:00
daa7561aff
Build / Build [amd64] (push) Has been cancelled
Build / Build [arm64] (push) Has been cancelled
Build / Publish (push) Has been cancelled
* bump outline to 1.0.0-2 * update translation.json * update readme.* * update Dockerfile* * bump outline to 1.0.0-test8 * reorganize repo, add git hook * bump version to 1.0.0 * update translations
12 lines
227 B
Bash
Executable File
12 lines
227 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
WORKDIR="$(dirname "$(readlink -f "${0}")")"
|
|
|
|
if ! git diff --cached --quiet --submodule=diff -- ./outline; then
|
|
python "$WORKDIR/update_readme.py"
|
|
git add ./README.md
|
|
exit 0
|
|
else
|
|
exit 0
|
|
fi
|