9 lines
146 B
Plaintext
9 lines
146 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -euxo pipefail
|
||
|
|
||
|
for script in completions/*; do
|
||
|
shell=${script##*.}
|
||
|
cargo run -- --completions $shell > $script
|
||
|
done
|