Skip to content

Commit

Permalink
style: refine output add missing line return
Browse files Browse the repository at this point in the history
  • Loading branch information
jBouyoud committed Nov 4, 2020
1 parent 0c5b62d commit a9c3760
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/commands/helm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,15 @@ helm_wrapper() {
set -- "$@" "$file_dec"

if [ "${QUIET}" = "false" ]; then
printf '[helm-secrets] Decrypt skipped: %s' "${file}" >&2
printf '[helm-secrets] Decrypt skipped: %s\n' "${file}" >&2
fi
else
if decrypt_helper "${real_file}"; then
set -- "$@" "$file_dec"
printf '%s\0' "${file_dec}" >>"${decrypted_files}"

if [ "${QUIET}" = "false" ]; then
printf '[helm-secrets] Decrypt: %s' "${file}" >&2
printf '[helm-secrets] Decrypt: %s\n' "${file}" >&2
fi
else
set -- "$@" "$file"
Expand Down

0 comments on commit a9c3760

Please sign in to comment.