mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
d4c4798a25
On NixOS, `bash` isn't under `/bin/bash` but rather in some directory in `$PATH`. Locally, I've been patching those scripts to make them work. `/usr/bin/env` seems to be the only [portable way](https://unix.stackexchange.com/questions/29608/why-is-it-better-to-use-usr-bin-env-name-instead-of-path-to-name-as-my) to use binaries from the PATH as interpreters. Signed-off-by: Quentin Gliech <quentingliech@gmail.com>
29 lines
988 B
Bash
Executable File
29 lines
988 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Update/check the docs/sample_config.yaml
|
|
|
|
set -e
|
|
|
|
cd `dirname $0`/..
|
|
|
|
SAMPLE_CONFIG="docs/sample_config.yaml"
|
|
SAMPLE_LOG_CONFIG="docs/sample_log_config.yaml"
|
|
|
|
check() {
|
|
diff -u "$SAMPLE_LOG_CONFIG" <(./scripts/generate_log_config) >/dev/null || return 1
|
|
}
|
|
|
|
if [ "$1" == "--check" ]; then
|
|
diff -u "$SAMPLE_CONFIG" <(./scripts/generate_config --header-file docs/.sample_config_header.yaml) >/dev/null || {
|
|
echo -e "\e[1m\e[31m$SAMPLE_CONFIG is not up-to-date. Regenerate it with \`scripts-dev/generate_sample_config\`.\e[0m" >&2
|
|
exit 1
|
|
}
|
|
diff -u "$SAMPLE_LOG_CONFIG" <(./scripts/generate_log_config) >/dev/null || {
|
|
echo -e "\e[1m\e[31m$SAMPLE_LOG_CONFIG is not up-to-date. Regenerate it with \`scripts-dev/generate_sample_config\`.\e[0m" >&2
|
|
exit 1
|
|
}
|
|
else
|
|
./scripts/generate_config --header-file docs/.sample_config_header.yaml -o "$SAMPLE_CONFIG"
|
|
./scripts/generate_log_config -o "$SAMPLE_LOG_CONFIG"
|
|
fi
|