Skip to content

Commit

Permalink
Add newline separators to standard output
Browse files Browse the repository at this point in the history
Signed-off-by: Richard T Bonhomme <[email protected]>
  • Loading branch information
TinCanTech committed Jan 6, 2024
1 parent 6837a1a commit 6c47f7a
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions easyrsa3/easyrsa
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,7 @@ ${opts:-
* No supported command options}"
fi
fi
print
} # => cmd_help()

# Options usage
Expand Down Expand Up @@ -624,8 +625,8 @@ die() {
print "
Easy-RSA error:

$1
"
$1${NL}"

# error_info is for hard-to-spot errors!
if [ "$error_info" ]; then
print " * $cmd: ${error_info}${NL}"
Expand All @@ -645,7 +646,8 @@ EasyRSA version $EASYRSA_version

Error
-----
$1"
$1${NL}"

easyrsa_exit_with_error=1
cleanup
} # => user_error()
Expand All @@ -662,7 +664,7 @@ warn() {
print "
WARNING
=======
$1"
$1${NL}"
} # => warn()

# informational notices to stdout
Expand All @@ -671,7 +673,7 @@ notice() {
print "
Notice
------
$1"
$1${NL}"
} # => notice()

# Helpful information
Expand Down

0 comments on commit 6c47f7a

Please sign in to comment.