#!/bin/csh -f
# Download and run third party installation scripts
clear
set basedir=`dirname $0`
cd $basedir
source util_sp_set_app

set conf_file=~/.util_sp_conf

if ( -f $conf_file ) then
    source $conf_file
else
    touch $conf_file
endif
if (! $?IKIT_FTP_DIR) then
    setenv IKIT_FTP_DIR /exlibris/ftp_from_exlibris
endif
if (! $?LOGDIR) then
    setenv LOGDIR $IKIT_FTP_DIR/log
endif
if ( -f $LOGDIR/sftp_product.log) then
    less +G $LOGDIR/sftp_product.log
else
    echo "Download log file was not found, please make sure the download step was performed"
endif
exit:
echo "Press any key to continue"
set ans="$<"
