bug fix for missing names for hard disks, now shows temp data content instead of Name n/a, which is more useful.

This commit is contained in:
inxi-svn 2009-07-30 00:21:12 +00:00
parent 1c960eefc2
commit 06b50b2946

9
inxi
View file

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
######################################################################## ########################################################################
#### Script Name: inxi #### Script Name: inxi
#### version: 1.1.1 #### version: 1.1.2
#### Date: 29 July 2009 #### Date: 29 July 2009
######################################################################## ########################################################################
#### SPECIAL THANKS #### SPECIAL THANKS
@ -2568,7 +2568,12 @@ get_hard_drive_data_advanced()
fi fi
break break
else else
a_temp_working[2]="Name n/a" # test to see if we can get a better name output when null
if [[ -n $temp_name ]];then
a_temp_working[2]=$temp_name
else
a_temp_working[2]="Name n/a"
fi
fi fi
done done
else else