diff options
-rwxr-xr-x | share/keyringer/append | 2 | ||||
-rwxr-xr-x | share/keyringer/encrypt | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/share/keyringer/append b/share/keyringer/append index 81300e0..27211a6 100755 --- a/share/keyringer/append +++ b/share/keyringer/append @@ -15,7 +15,7 @@ IFS=$'\n' CONTENT=($(keyringer_exec decrypt $BASEDIR $FILE)) -if [ "$1" = "append" ]; then +if [ "$BASENAME" == "append" ]; then # only display directions if we're running append, not append-batch echo " " echo "$FILE currently has ${#CONTENT[@]} lines" diff --git a/share/keyringer/encrypt b/share/keyringer/encrypt index 14ee707..c073a58 100755 --- a/share/keyringer/encrypt +++ b/share/keyringer/encrypt @@ -13,8 +13,8 @@ keyringer_get_new_file $2 # Encrypt mkdir -p $KEYDIR/`dirname $FILE` -if [ "$1" = "encrypt" ]; then - # only display directions if we're running encrypt, not encrypt-batch +if [ "$BASENAME" == "encrypt" ]; then + # Only display directions if we're running encrypt, not encrypt-batch echo "Type your message and finish your input with EOF (Ctrl-D)." fi |