From f463565770e56dd96255369c2ee6d5ff98db8c2f Mon Sep 17 00:00:00 2001 From: Mario Krehl Date: Sat, 14 Apr 2018 12:01:34 +0200 Subject: [PATCH] Change target directory of completions to target/ --- bin/core/imag/build.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/core/imag/build.rs b/bin/core/imag/build.rs index 0baefdbb..4b5d5521 100644 --- a/bin/core/imag/build.rs +++ b/bin/core/imag/build.rs @@ -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(); }