Skip to content

Commit

Permalink
Bumped up version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
odkr committed Mar 7, 2020
1 parent a3d867d commit 56bb502
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -95,7 +95,7 @@ in the [manual](MANUAL.rst#security) for details.
### Set-up

1. Download the repository from:
<https://github.com/odkr/lpassh-add/archive/v1.1.3.tar.gz>
<https://github.com/odkr/lpassh-add/archive/v1.1.4.tar.gz>
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`.
Expand All @@ -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
Expand All @@ -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
```

Expand Down
6 changes: 3 additions & 3 deletions lpassh-add
Original file line number Diff line number Diff line change
@@ -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
#
Expand Down Expand Up @@ -282,7 +282,7 @@ do
;;
-h)
exec cat <<EOF
lpassh-add v1.1.3 - Unlocks SSH keys using LastPass.
lpassh-add v1.1.4 - Unlocks SSH keys using LastPass.
Synopsis:
lpassh-add [-cq] [-t LIFETIME] [*KEY* [*KEY* [...]]]
Expand All @@ -304,7 +304,7 @@ EOF
;;
-V)
exec cat <<EOF
lpassh-add v1.1.3
lpassh-add v1.1.4
(c) 2018, 2019, 2020 Odin Kroeger
Released under the MIT license.
EOF
Expand Down

0 comments on commit 56bb502

Please sign in to comment.