Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1From 8f76b32946430737f97f2702afd828b09536afd2 Mon Sep 17 00:00:00 2001 2From: Maximilian Bosch <maximilian@mbosch.me> 3Date: Sun, 15 Mar 2020 20:10:11 +0100 4Subject: [PATCH 2/2] Fix audit.bash setup 5 6This sets PASSWORD_STORE_DIR (needed by the python-code) to 7PASSWORD_STORE_DIR and properly falls back to `~/.password-store` if 8it's not set. 9--- 10 audit.bash | 2 +- 11 1 file changed, 1 insertion(+), 1 deletion(-) 12 13diff --git a/audit.bash b/audit.bash 14index 7a973dc..c40ff76 100755 15--- a/audit.bash 16+++ b/audit.bash 17@@ -17,7 +17,7 @@ 18 # 19 20 cmd_audit() { 21- export PASSWORD_STORE_DIR=$PREFIX GIT_DIR PASSWORD_STORE_GPG_OPTS 22+ export PASSWORD_STORE_DIR=${PASSWORD_STORE_DIR:-$HOME/.password-store} GIT_DIR PASSWORD_STORE_GPG_OPTS 23 export X_SELECTION CLIP_TIME PASSWORD_STORE_UMASK GENERATED_LENGTH 24 export CHARACTER_SET CHARACTER_SET_NO_SYMBOLS EXTENSIONS PASSWORD_STORE_KEY 25 export PASSWORD_STORE_ENABLE_EXTENSIONS PASSWORD_STORE_SIGNING_KEY 26-- 272.25.0 28