Commits


Bump version to 1.3.2


Update copyright year


Use conditional assignment operator in Makefile


Workaround for field splitting issue Not perfect but good enough for now I guess. See #6


Add a missing punctuation mark


Use parameter expansion instead of dirname


Don't use shift at all Both available commands (insert and show) only accept a single argument so handling the command line arguments this way is easier and more foolproof. This fixes issue #5.


Bump version to 1.3.1


Revert "exit if any command fails" This reverts commit ffe30805eadc42fd1fed4b8e37b4e8a8712c3efb.


Bump version to 1.3


Revert "make abort behave more like echo itself" This reverts commit 8c2f8d546a5097ee77977ecb74907b6ad0eae686.


Don't quote PASSWORD_STORE_KEY in GPG_OPTS


make abort behave more like echo itself


yet another style fix


exit if any command fails


tpm improve input handling


stdout -> standard output


Implement some shellcheck suggestions


Clarify description of show command


Add BINDIR and MANDIR variables to Makefile


style fixes


Use printf instead of echo. `echo` is [quirky][posix-echo]. Backslashes may (or may not) be expanded and using `-n` as a password (I hope you don't, but still) could (or could not) work. `printf` solves all those problems! Was the ending newline needed? [posix-echo]: http://pubs.opengroup.org/onlinepubs/9699919799/utilities/echo.html


Don't use variables in the printf format string


Mention that tpm is POSIX shell compatible


Fix syntax error