Skip to content

Commit 80dec2d

Browse files
committed
style: Remove extraneous quotes
1 parent 85553a1 commit 80dec2d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/lib/public/error.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
core.err_set() {
44
if (($# == 1)); then
55
ERRCODE=1
6-
ERR="$1"
6+
ERR=$1
77
elif (($# == 2)); then
8-
ERRCODE="$1"
9-
ERR="$2"
8+
ERRCODE=$1
9+
ERR=$2
1010
else
1111
printf '%s\n' "Error: bash-error: Incorrect function arguments"
1212
return 1

0 commit comments

Comments
 (0)