copy whole array rather than one element
This commit is contained in:
parent
ea14212806
commit
258e68c95a
1 changed files with 1 additions and 1 deletions
|
|
@ -376,7 +376,7 @@ get_source_file_size()
|
||||||
if [ -z "$INCLIST" ]; then
|
if [ -z "$INCLIST" ]; then
|
||||||
DUINCLIST=($ROOT)
|
DUINCLIST=($ROOT)
|
||||||
else
|
else
|
||||||
DUINCLIST=$INCLIST
|
DUINCLIST=("${INCLIST[@]}")
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for include in ${DUINCLIST[@]}; do
|
for include in ${DUINCLIST[@]}; do
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue