Files
outline-ru/.github/hooks/pre-commit
T
Evgeny daa7561aff
Build / Build [amd64] (push) Has been cancelled
Build / Build [arm64] (push) Has been cancelled
Build / Publish (push) Has been cancelled
1.0.0 (#26)
* 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
2025-10-27 17:47:11 +05:00

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