Fix a bad conditional.
This commit is contained in:
parent
d9ef317d59
commit
9d5034b547
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=22856
1 changed files with 4 additions and 4 deletions
|
@ -34,7 +34,7 @@
|
|||
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
# SUCH DAMAGE.
|
||||
#
|
||||
# $Id: gnome_upgrade.sh,v 1.10 2004-11-07 22:38:53 adamw Exp $
|
||||
# $Id: gnome_upgrade.sh,v 1.11 2004-11-08 03:04:48 marcus Exp $
|
||||
#
|
||||
|
||||
# This script will aid in doing major upgrades to the GNOME Desktop (e.g.
|
||||
|
@ -200,7 +200,7 @@ if [ ${VERBOSE} != 0 ]; then
|
|||
fi
|
||||
|
||||
restart=0
|
||||
if [ $1 = "-restart" ]; then
|
||||
if [ "$1" = "-restart" ]; then
|
||||
restart=1
|
||||
fi
|
||||
|
||||
|
@ -216,8 +216,8 @@ echo
|
|||
echo "If necessary, hit Control-C now, drop to a terminal, and restart the upgrade." | /usr/bin/fmt 75 79
|
||||
echo
|
||||
# $i is a good clobberable variable name
|
||||
read -p "Hit <ENTER> to continue with the upgrade: " i
|
||||
echo
|
||||
#read -p "Hit <ENTER> to continue with the upgrade: " i
|
||||
#echo
|
||||
|
||||
logfile=`get_tmpfile gnome_upgrade_log`
|
||||
if [ $? != 0 ]; then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue