Skip to content

Commit e2bbc27

Browse files
Fix assert_not_empty message
1 parent ce1f5f3 commit e2bbc27

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

unix-shell-script-kit

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
3333
# ## Tracking
3434
#
3535
# * Package: unix-shell-script-kit
36-
# * Version: 12.1.0
36+
# * Version: 12.1.1
3737
# * Created: 2017-08-22T00:00:00Z
38-
# * Updated: 2023-04-15T05:45:49Z
38+
# * Updated: 2023-08-21T18:37:56Z
3939
# * License: GPL-2.0 or GPL-3.0 or contact us for more
4040
# * Website: https://github.com/sixarm/unix-shell-script-kit
4141
# * Contact: Joel Parker Henderson ([email protected])
@@ -1553,7 +1553,7 @@ assert_empty() {
15531553
# STDERR=> assert_not_empty
15541554
# ```
15551555
assert_not_empty() {
1556-
[ -z "$1" ] || err assert_empty "$@"
1556+
[ -z "$1" ] || err assert_not_empty "$@"
15571557
}
15581558

15591559
# assert_int_eq: assert an integer is equal to another integer.

0 commit comments

Comments
 (0)