mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-22 22:49:18 +00:00
7 lines
96 B
Bash
Executable file
7 lines
96 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
dest=${1-config/defaults.hjson}
|
|
|
|
cargo run -- --print-config-docs > "$dest"
|