Fix wrong array declaration
This commit is contained in:
parent
0e6f16c226
commit
50b1ae7bad
|
@ -43,7 +43,7 @@ echo
|
||||||
IFS=' '
|
IFS=' '
|
||||||
|
|
||||||
# Create new variable of selection.
|
# Create new variable of selection.
|
||||||
array=("${dev}")
|
array=(${dev})
|
||||||
dev="${array[0]}"
|
dev="${array[0]}"
|
||||||
|
|
||||||
clear
|
clear
|
||||||
|
|
Loading…
Reference in New Issue