diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2018-10-17 14:51:01 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2018-10-17 14:51:01 -0300 |
commit | 837fd478778087527b808e8538a5b0f40a88f9e0 (patch) | |
tree | 865406546315b147b6561135d8baf69528eec19f | |
parent | 2eafba8ae6f9d54b5684a5014d0d1f3ccaa89099 (diff) | |
download | keyringer-837fd478778087527b808e8538a5b0f40a88f9e0.tar.gz keyringer-837fd478778087527b808e8538a5b0f40a88f9e0.tar.bz2 |
Fixes BASEDIR evaluation at init action
-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" |