Change target directory of completions to target/

This commit is contained in:
Mario Krehl 2018-04-14 12:01:34 +02:00 committed by Matthias Beyer
parent 38b4151b84
commit f463565770

View file

@ -110,9 +110,9 @@ fn main() {
.subcommand(build_subcommand!("todo", imagtodo));
// Actually generates the completion files
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/");
app.gen_completions("imag", Shell::Bash, "../../../target/");
app.gen_completions("imag", Shell::Fish, "../../../target/");
app.gen_completions("imag", Shell::Zsh, "../../../target/");
toplevelbuildscript::build();
}