12 lines
192 B
Bash
Executable File
12 lines
192 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail
|
|
|
|
for script in completions/*; do
|
|
shell=${script##*.}
|
|
if [ $shell == nu ]; then
|
|
continue
|
|
fi
|
|
cargo run -- --completions $shell > $script
|
|
done
|