fix(debashify): error message on empty array create
This commit is contained in:
parent
8a64d4e207
commit
cdd03f28ac
1 changed files with 1 additions and 1 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
_lxsh_array_create() {
|
_lxsh_array_create() {
|
||||||
printf "%s" "$1"
|
printf "%s" "$1"
|
||||||
shift 1
|
shift 1 2>/dev/null || return
|
||||||
for N ; do
|
for N ; do
|
||||||
printf "\t%s" "$N"
|
printf "\t%s" "$N"
|
||||||
done
|
done
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue