From: Steven Baltakatei Sandoval Date: Thu, 13 Jan 2022 05:08:53 +0000 (+0000) Subject: chore(u/bk-export-min-pubkeys):Remove debug stderr messages X-Git-Tag: 0.5.0~25 X-Git-Url: https://zdv2.bktei.com/gitweb/BK-2020-03.git/commitdiff_plain/b605b5b5c80a9daf90e92ed4be43501ff5951e8d chore(u/bk-export-min-pubkeys):Remove debug stderr messages Signed-off-by: Steven Baltakatei Sandoval --- diff --git a/user/bk-export-min-pubkeys.sh b/user/bk-export-min-pubkeys.sh index 96b267d..a18ad7e 100755 --- a/user/bk-export-min-pubkeys.sh +++ b/user/bk-export-min-pubkeys.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # Desc: Export each pubkey to a separate file # Usage: bk-export-min-pubkeys.sh -# Version: 0.0.1 +# Version: 0.0.2 time_now="$(date +%Y%m%dT%H%M%S%z)"; dir_out="./$time_now..pubkeys"; @@ -27,7 +27,7 @@ main() { # Create output dir path_out="$(readlink -f "$dir_out")"; - yell "DEBUG:path_out:$path_out"; + #yell "DEBUG:path_out:$path_out"; if [[ ! -d "$path_out" ]]; then mkdir -p "$path_out"; yell "NOTICE:Creating output directory:$path_out"; @@ -39,7 +39,7 @@ main() { # Export file pubkey_ascii="$(try gpg_get_pubkey "$longid")"; - yell "DEBUG:pubkey_ascii:$pubkey_ascii"; + #yell "DEBUG:pubkey_ascii:$pubkey_ascii"; echo "$pubkey_ascii" > "$path_out"/"$longid".asc done < <( echo "$list_longid" );