mirror of
https://github.com/smxi/inxi.git
synced 2025-01-19 00:47:47 +00:00
found weird issue, infobash was depending on variables NOT being correctly declared for some output stuff. This will need
to be fixed for real, for now just didn't declare HDD_MODEL. This type of stuff is why this script needs to be rewritten...
This commit is contained in:
parent
06304336a2
commit
14c7150e77
4
inxi
4
inxi
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
########################################################################
|
||||
#### Script Name: inxi
|
||||
#### version: 0.2.9
|
||||
#### version: 0.2.10
|
||||
#### Date: October 30 2008
|
||||
########################################################################
|
||||
#### inxi is a fork of infobash, the original bash sys info script by locsmif
|
||||
|
@ -46,7 +46,7 @@ CPU_MODEL=''
|
|||
CPU_CLOCK=''
|
||||
CPU_FLAGS=''
|
||||
HDD_CAPACITY=''
|
||||
HDD_MODEL=''
|
||||
#HDD_MODEL='' ## note, can't declare this or it adds a comma in list of disks in get_hdd_data
|
||||
HDD_USED=''
|
||||
IRC_CLIENT=''
|
||||
IRC_CLIENT_VERSION=''
|
||||
|
|
Loading…
Reference in a new issue