8 lines
177 B
Bash
Executable file
8 lines
177 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Stop on error
|
|
set -e
|
|
|
|
echo "Generating all completions using cargo debug binary..."
|
|
cargo run -q -- generate completions all --output "$PWD"
|
|
echo "Done."
|