2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-05-29 17:23:08 +00:00

[go-xcat] Fix package version checking on Ubuntu 18.04 (#5320)

This commit is contained in:
Gᴏɴɢ Jie 2018-06-25 20:51:10 +08:00 committed by yangsong
parent 74113c6b17
commit f7c7ea884f

View File

@ -2,7 +2,7 @@
#
# go-xcat - Install xCAT automatically.
#
# Version 1.0.27
# Version 1.0.28
#
# Copyright (C) 2016, 2017, 2018 International Business Machines
# Eclipse Public License, Version 1.0 (EPL-1.0)
@ -438,7 +438,12 @@ function check_package_version_deb()
do
if [[ "$1" = "${name[i]}" ]]
then
echo "${ver[i]}"
if [[ -n "${ver[i]}" ]]
then
echo "${ver[i]}"
else
echo "(not installed)"
fi
unset "name[${i}]" "ver[${i}]"
shift && continue 2
fi