move target directory of the shell completions to target/shell-completions.d/

This commit is contained in:
Mario Krehl 2018-04-14 11:03:55 +02:00 committed by Matthias Beyer
parent 264a07239f
commit d4c7019fc7
1 changed files with 3 additions and 3 deletions

View File

@ -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();
}