diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | keyringer | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -1,4 +1,6 @@ -2010-06-16 - unreleased - Silvio Rhatto <rhatto@riseup.net> +2018-10-17 - unreleased - Silvio Rhatto <rhatto@riseup.net> + + Fixes BASEDIR evaluation at init action Adds history support at shell action @@ -93,7 +93,7 @@ function keyringer_init { fi # Reparse basedir to force absolute folder - BASEDIR="`cd $BASEDIR && pwd`" + BASEDIR="`cd $BASEDIR &> /dev/null && pwd`" # Add entry chmod 700 "$BASEDIR" |