From dab19856704972d036252d101c754cc3fc2d85dc Mon Sep 17 00:00:00 2001 From: cyqsimon <28627918+cyqsimon@users.noreply.github.com> Date: Fri, 25 Aug 2023 19:11:27 +0800 Subject: [PATCH] Move completion file location --- Makefile | 4 ++-- {src => completion}/bandwhich | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename {src => completion}/bandwhich (100%) diff --git a/Makefile b/Makefile index 447839c..3e35f04 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ BIN=target/$(TARGET)/$(APP) BIN_DST=$(DESTDIR)$(prefix)/bin/$(APP) DOC_DST=$(DESTDIR)$(prefix)/share/man/man1/bandwhich.1 LIC_DST=$(DESTDIR)$(prefix)/share/licenses/$(APP) -AUTOCOMPLETE_DST=/usr/share/bash-completion/completions +AUTOCOMPLETE_DST=$(DESTDIR)$(prefix)/share/bash-completion/completions SRC = Makefile Cargo.lock Cargo.toml $(shell find src -type f -wholename 'src/*.rs') .PHONY: all clean distclean install uninstall vendor install_autocomplete @@ -38,7 +38,7 @@ endif install_autocomplete: mkdir -p $(AUTOCOMPLETE_DST) - cp src/bandwhich $(AUTOCOMPLETE_DST)/bandwhich + cp completion/bandwhich $(AUTOCOMPLETE_DST)/bandwhich uninstall_autocomplete: rm -f $(AUTOCOMPLETE_DST)/bandwhich diff --git a/src/bandwhich b/completion/bandwhich similarity index 100% rename from src/bandwhich rename to completion/bandwhich