From 56bb502fbf183ab1c67a10c6815ff670c67e7562 Mon Sep 17 00:00:00 2001 From: Odin Kroeger Date: Sat, 7 Mar 2020 13:04:11 +0100 Subject: [PATCH] Bumped up version number. --- README.md | 12 ++++++------ lpassh-add | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 75dee65..7a4c752 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ are using a modern-ish bourne-compatible shell (bash, dash, ksh, mksh, oksh, and yash all should do), then you can install **lpassh-add** by: ```sh -( set -Cfu; NAME=lpassh-add VERS=1.1.3 +( set -Cfu; NAME=lpassh-add VERS=1.1.4 for GET in 'curl -LsS' 'wget -qO -'; do $GET "https://github.com/odkr/$NAME/archive/v$VERS.tar.gz" [ $? -eq 127 ] || break @@ -95,7 +95,7 @@ in the [manual](MANUAL.rst#security) for details. ### Set-up 1. Download the repository from: - + 2. Unpack the repository. 3. Copy **lpassh-add** to a directory in your `PATH`. 4. Copy its manual page (`lpassh-add.1`) ito a directory in your `MANPATH`. @@ -109,7 +109,7 @@ you probably can download **lpassh-add** by: ```sh ( set -Cfu - NAME=lpassh-add VERS=1.1.3; AR="v$VERS.tar.gz" + NAME=lpassh-add VERS=1.1.4; AR="v$VERS.tar.gz" # Download the archive and the signature. for GET in 'curl -LsSo' 'wget -qO'; do for FILE in "archive/$AR" "releases/download/v$VERS/$AR.asc"; do @@ -129,19 +129,19 @@ the archive that you've just downloaded has been tempered with: ```sh # Download my GnuPG key. gpg --recv-keys 0x6B06A2E03BE31BE9 -gpg --verify v1.1.3.tar.gz.asc v1.1.3.tar.gz +gpg --verify v1.1.4.tar.gz.asc v1.1.4.tar.gz ``` Then unpack the archive: ```sh -tar -xzf v1.1.3.tar.gz +tar -xzf v1.1.4.tar.gz ``` Finally, install **lpassh-add** and its manual: ```sh -cd lpassh-add-1.1.3 +cd lpassh-add-1.1.4 make install ``` diff --git a/lpassh-add b/lpassh-add index 86cfdc4..5635400 100755 --- a/lpassh-add +++ b/lpassh-add @@ -1,5 +1,5 @@ #!/bin/sh -# lpass-ssh-add v1.1.3 - Unlock SSH keys using LastPass. +# lpass-ssh-add v1.1.4 - Unlock SSH keys using LastPass. # # Copyright 2018, 2019, 2020 Odin Kroeger # @@ -282,7 +282,7 @@ do ;; -h) exec cat <