#
# usage:        cont.sh
#
# abstract:     This Bourne Shell script queries the user to continue
#		or not.
#
# note(s):      1. This routine must be called using a . (period)
#
# Copyright (c) 1992-1998 The MathWorks, Inc. All Rights Reserved.
# $Revision: 1.13 $  $Date: 1999/01/11 19:24:43 $
#----------------------------------------------------------------------------
#
    if [ "$batch" = "0" ]; then
        mesg='Continue? ([y]/n) '
        . $dir/$echon_sh
        read ans
        if [ `expr "//$ans" : '//[Nn].*'` -gt 0 ]; then
            . $dir/$cleanup_sh
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    echo ''
    echo '    install_matlab stopped prematurely . . .'
    echo ''
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
            exit 1
        fi
    fi
