mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-04 19:50:00 +00:00
6 lines
122 B
Bash
Executable file
6 lines
122 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
dest=${1-config/defaults.hjson}
|
|
|
|
cargo run --manifest-path crates/utils/Cargo.toml > "$dest"
|