3993,4014c3993,4014 < if [[ "$DO_SVN" != "yes" || "$USE_VISIT_FILE" == "yes" ]] ; then < # < # Unzip the file, provided a gzipped file exists. < # < if [[ -f ${VISIT_FILE} ]] ; then < info "Unzipping/untarring ${VISIT_FILE} . . ." < uncompress_untar ${VISIT_FILE} < if [[ $? != 0 ]] ; then < warn \ < "Unable to untar ${VISIT_FILE}. Corrupted file or out of space on device?" < return 1 < fi < elif [[ -f ${VISIT_FILE%.*} ]] ; then < info "Unzipping ${VISIT_FILE%.*} . . ." < $TAR xf ${VISIT_FILE%.*} < if [[ $? != 0 ]] ; then < warn \ < "Unable to untar ${VISIT_FILE%.*}. Corrupted file or out of space on device?" < return 1 < fi < fi < fi --- > # if [[ "$DO_SVN" != "yes" || "$USE_VISIT_FILE" == "yes" ]] ; then > # # > # # Unzip the file, provided a gzipped file exists. > # # > # if [[ -f ${VISIT_FILE} ]] ; then > # info "Unzipping/untarring ${VISIT_FILE} . . ." > # uncompress_untar ${VISIT_FILE} > # if [[ $? != 0 ]] ; then > # warn \ > #"Unable to untar ${VISIT_FILE}. Corrupted file or out of space on device?" > # return 1 > # fi > # elif [[ -f ${VISIT_FILE%.*} ]] ; then > # info "Unzipping ${VISIT_FILE%.*} . . ." > # $TAR xf ${VISIT_FILE%.*} > # if [[ $? != 0 ]] ; then > # warn \ > #"Unable to untar ${VISIT_FILE%.*}. Corrupted file or out of space on device?" > # return 1 > # fi > # fi > # fi