From 41f9ab4c1140c86f71f1b898da86b4d19bbe1574 Mon Sep 17 00:00:00 2001 From: zimhat Date: Mon, 26 Oct 2020 11:08:25 +0100 Subject: [PATCH 1/2] Fix hardcoded version number (#200) --- rofi-pass | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rofi-pass b/rofi-pass index 22667e2..5156b9b 100755 --- a/rofi-pass +++ b/rofi-pass @@ -774,7 +774,8 @@ insertPass () { } help_msg () { - cat <<'EOF' + version_number=$(git describe --tags --abbrev=0) + cat < Date: Wed, 28 Oct 2020 09:58:37 +0100 Subject: [PATCH 2/2] Remove dependency to git and hardcode the correct version number --- rofi-pass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rofi-pass b/rofi-pass index 5156b9b..a46fb19 100755 --- a/rofi-pass +++ b/rofi-pass @@ -774,7 +774,7 @@ insertPass () { } help_msg () { - version_number=$(git describe --tags --abbrev=0) + version_number="2.0.2" cat <