c23b0635ee
Torrents may now be created from standard input by passing `--input -`. Since `--name` and `--output` cannot be deduced, they are required when `--input -`. type: added
11 lines
172 B
Bash
Executable File
11 lines
172 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail
|
|
|
|
cargo build
|
|
|
|
for script in completions/*; do
|
|
shell=${script##*.}
|
|
./target/debug/imdl completions --shell $shell > $script
|
|
done
|