From 8582b3de12e3063f81435c884e8db452cb809865 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 5 Feb 2018 20:31:02 +1300 Subject: Suppress error messages in td(1df) Don't report to the user when a repository is created, and ignore errors from git-diff-index(1) for when there is no HEAD --- bin/td.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/td.sh b/bin/td.sh index eaae1fd6..fb5610c5 100644 --- a/bin/td.sh +++ b/bin/td.sh @@ -15,7 +15,7 @@ if ! command -v isgr >/dev/null 2>&1 ; then printf >&2 'isgr: command not found\n' exit 1 fi -isgr || git init || exit +isgr || git init --quiet || exit # If the to-do file doesn't exist yet, create it [ -e "$file" ] || touch -- "$file" || exit @@ -27,5 +27,5 @@ isgr || git init || exit git add -- "$file" # If there are changes to commit, commit them -git diff-index --quiet HEAD || +git diff-index --quiet HEAD 2>/dev/null || git commit --message 'Changed by td(1df)' --quiet -- cgit v1.2.3 From 97aff1f0b76838c7eb27b415c480da3314e8e766 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 7 Feb 2018 15:57:46 +1300 Subject: Add missing options terminator to Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 70209907..3b0be55a 100644 --- a/Makefile +++ b/Makefile @@ -516,7 +516,7 @@ install-vim-after-ftplugin: mkdir -p $(HOME)/.vim/after/ftplugin for type in vim/after/ftplugin/* ; do \ mkdir -p -- $(HOME)/.vim/after/ftplugin/"$${type##*/}" ; \ - cp -p "$$type"/* $(HOME)/.vim/after/ftplugin/"$${type##*/}" ; \ + cp -p -- "$$type"/* $(HOME)/.vim/after/ftplugin/"$${type##*/}" ; \ done install-vim-after-indent: -- cgit v1.2.3 From aaf21a1e48bb08bb5d867f253d39377377a8a4b9 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 12 Feb 2018 09:38:51 +1300 Subject: Update Vim plugin submodules --- vim/bundle/repeat | 2 +- vim/bundle/unimpaired | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/vim/bundle/repeat b/vim/bundle/repeat index 070ee903..8106e142 160000 --- a/vim/bundle/repeat +++ b/vim/bundle/repeat @@ -1 +1 @@ -Subproject commit 070ee903245999b2b79f7386631ffd29ce9b8e9f +Subproject commit 8106e142dfdc278ff3eaaadd7b362ad7949d4357 diff --git a/vim/bundle/unimpaired b/vim/bundle/unimpaired index 3a775907..1ac95a86 160000 --- a/vim/bundle/unimpaired +++ b/vim/bundle/unimpaired @@ -1 +1 @@ -Subproject commit 3a7759075cca5b0dc29ce81f2747489b6c8e36a7 +Subproject commit 1ac95a86c0facb1be8abec924cf79fd642cec386 -- cgit v1.2.3 From c9052e5a10e7e9868d2eebdccd735c3a3875dd4b Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 12 Feb 2018 10:07:19 +1300 Subject: Bump VERSION --- VERSION | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 41c18b26..78300d74 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -tejr dotfiles v0.27.0 -Thu Feb 1 05:03:14 UTC 2018 +tejr dotfiles v0.28.0 +Sun Feb 11 21:07:15 UTC 2018 -- cgit v1.2.3