mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 04:00:02 +00:00
Nutomic
328a48c9f5
* Remove error-type feature from lemmy-utils * fixes --------- Co-authored-by: SleeplessOne1917 <28871516+SleeplessOne1917@users.noreply.github.com>
6 lines
137 B
Bash
Executable file
6 lines
137 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
dest=${1-config/defaults.hjson}
|
|
|
|
cargo run --manifest-path crates/utils/Cargo.toml --features full > "$dest"
|