blob: b7cbc70b2511d5fe2a2a5fd6ccfa1c84990273c6 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
set -euo pipefail
rm -rf _syncthing
git clone --depth 1 https://github.com/syncthing/syncthing.git _syncthing
pushd _script
go run ./find-metrics ../_syncthing > ../includes/metrics-list.rst
popd
|