mirror of
https://github.com/smxi/inxi.git
synced 2024-11-17 00:31:19 +00:00
bug fix, parse error
This commit is contained in:
parent
5ef2329092
commit
8235cdd10f
2
inxi
2
inxi
|
@ -5429,7 +5429,7 @@ get_init_data()
|
|||
if [[ -n $( type -p systemd ) ]];then
|
||||
init_version=$( get_de_app_version 'systemd' '^systemd' '2' )
|
||||
fi
|
||||
if [[ -z $init_version && -n $( type -p systemctl )]];then
|
||||
if [[ -z $init_version && -n $( type -p systemctl ) ]];then
|
||||
init_version=$( get_de_app_version 'systemctl' '^systemd' '2' )
|
||||
fi
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue