mirror of
https://github.com/LemmyNet/lemmy
synced 2024-10-30 15:21:20 +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"
|