Skip to content
Snippets Groups Projects
Commit d5adc37b authored by Brian J. Murrell's avatar Brian J. Murrell
Browse files

Array element access in bash MUST be enclosed with {}.

parent 233c692e
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@ i=0
devs=()
for d in $scsidevs; do
devs[$i]=`sg_map | awk "{if ($ 2 == \"$d\") print $ 1}"`
if [ -z "$devs[$i]" ]; then
if [ -z "${devs[$i]}" ]; then
echo "Can't find SG device for $d"
exit 1
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment