From 279766fa13afe36410f8fb7533c12966444974fc Mon Sep 17 00:00:00 2001 From: Srivathsan Murali Date: Fri, 13 Sep 2019 08:19:12 +0200 Subject: [PATCH] moved script and bash completion to src dir --- Makefile | 4 ++-- note => src/note | 2 +- note.bash-completion => src/note.bash-completion | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename note => src/note (99%) rename note.bash-completion => src/note.bash-completion (100%) diff --git a/Makefile b/Makefile index ba61ed8..2a52925 100644 --- a/Makefile +++ b/Makefile @@ -7,8 +7,8 @@ all: @echo "Note is a shell script, so there is nothing to do. Try \"make install\" instead." install: - @install -v -d "$(DESTDIR)$(BINDIR)/" && install -m 0755 -v note "$(DESTDIR)$(BINDIR)/note" - @install -v -d "$(DESTDIR)$(BASHCOMPDIR)" && install -m 0644 -v note.bash-completion "$(DESTDIR)$(BASHCOMPDIR)/note" + @install -v -d "$(DESTDIR)$(BINDIR)/" && install -m 0755 -v src/note "$(DESTDIR)$(BINDIR)/note" + @install -v -d "$(DESTDIR)$(BASHCOMPDIR)" && install -m 0644 -v src/note.bash-completion "$(DESTDIR)$(BASHCOMPDIR)/note" uninstall: @rm -vrf \ diff --git a/note b/src/note similarity index 99% rename from note rename to src/note index 52a04d9..76a0748 100755 --- a/note +++ b/src/note @@ -1,6 +1,6 @@ #!/bin/sh -NOTE_VERSION="0.1.0" +NOTE_VERSION="0.1.1" NOTES_DIR="${NOTES_DIR:-$HOME/.local/share/notes}" git_cmd() { diff --git a/note.bash-completion b/src/note.bash-completion similarity index 100% rename from note.bash-completion rename to src/note.bash-completion -- 2.45.2