move target directory of the shell completions to target/shell-completions.d/
This commit is contained in:
parent
264a07239f
commit
d4c7019fc7
1 changed files with 3 additions and 3 deletions
|
@ -110,9 +110,9 @@ fn main() {
|
|||
.subcommand(build_ui!("todo", imagtodo));
|
||||
|
||||
// Actually generates the completion files
|
||||
app.gen_completions("imag", Shell::Bash, "./");
|
||||
app.gen_completions("imag", Shell::Fish, "./");
|
||||
app.gen_completions("imag", Shell::Zsh, "./");
|
||||
app.gen_completions("imag", Shell::Bash, "../../../target/shell-completions.d/");
|
||||
app.gen_completions("imag", Shell::Fish, "../../../target/shell-completions.d/");
|
||||
app.gen_completions("imag", Shell::Zsh, "../../../target/shell-completions.d/");
|
||||
|
||||
toplevelbuildscript::build();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue