From: Ian Kelling Date: Mon, 11 Mar 2024 00:21:28 +0000 (-0400) Subject: bug fix: prints dry statement when not in dry run X-Git-Url: https://iankelling.org/git/?p=log-quiet;a=commitdiff_plain;h=f63a62a9ae726155d06b2ca2fc2b576a1dd11289 bug fix: prints dry statement when not in dry run --- diff --git a/sysd-mail-once b/sysd-mail-once index c5cd8c8..659fa92 100755 --- a/sysd-mail-once +++ b/sysd-mail-once @@ -96,18 +96,18 @@ mi() { fi } e() { - printf "dryrun: %s\n" "$*" + if $dryrun; then + printf "dryrun: %s\n" "$*" + fi } c=$cbase/$service # c for command file path base -if $dryrun; then - e "c=$c" -fi +e "c=$c" glob="${c}[0-9]*" arr=($glob); file="${arr[0]}"; [[ $glob != "$file" ]] || file= -if [[ $dryrun && $file ]]; then +if [[ $file ]]; then e "file=$file" fi