Conflicts: cave/com.raytheon.viz.gfe/GFESuite/ifpIMAGE Change-Id: Iccf1487b3f0b354685ce2ff8b76e09ffc5350962 Former-commit-id:049424e5f0
[formerly45ccac0859
] [formerly4364e7497c
] [formerly049424e5f0
[formerly45ccac0859
] [formerly4364e7497c
] [formerly2db5f26840
[formerly4364e7497c
[formerly 6567ae1f172ec982d8a2d6d25e8aca97292f9b1d]]]] Former-commit-id:2db5f26840
Former-commit-id:5831f8d79e
[formerly7d3af157f8
] [formerly a242c09c6983c820aa32c052d7deaed21a0982ec [formerly3b2ea2d6ac
]] Former-commit-id: 50ec6dfad53c87f1ad4174e64fdb142803fcaf62 [formerlyf2b0cc20e8
] Former-commit-id:3c673caec2
49 lines
1.4 KiB
Bash
Executable file
49 lines
1.4 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
# This software was developed and / or modified by Raytheon Company,
|
|
# pursuant to Contract DG133W-05-CQ-1067 with the US Government.
|
|
#
|
|
# U.S. EXPORT CONTROLLED TECHNICAL DATA
|
|
# This software product contains export-restricted data whose
|
|
# export/transfer/disclosure is restricted by U.S. law. Dissemination
|
|
# to non-U.S. persons whether in the United States or abroad requires
|
|
# an export license or other authorization.
|
|
#
|
|
# Contractor Name: Raytheon Company
|
|
# Contractor Address: 6825 Pine Street, Suite 340
|
|
# Mail Stop B8
|
|
# Omaha, NE 68106
|
|
# 402.291.0100
|
|
#
|
|
# See the AWIPS II Master Rights File ("Master Rights File.pdf") for
|
|
# further licensing information.
|
|
#
|
|
#
|
|
# SOFTWARE HISTORY
|
|
# Date Ticket# Engineer Description
|
|
# ------------ ---------- ----------- --------------------------
|
|
# Feb 07, 2014 #2509 dgilling Fix baseline merge issue.
|
|
#
|
|
#
|
|
|
|
|
|
# get path to cave
|
|
path_to_script=`readlink -f $0`
|
|
RUN_FROM_DIR=`dirname $path_to_script`
|
|
|
|
# cave directory
|
|
CAVE_DIR=/awips2/cave
|
|
|
|
# execute the runProcedure module
|
|
_GFECLI="${RUN_FROM_DIR}/gfeclient.sh"
|
|
_MODULE="${RUN_FROM_DIR}/src/ifpimage/PngWriter.py"
|
|
|
|
# quoting of '$@' is used to prevent command line interpretation
|
|
if [ ! -f $_GFECLI ] || [ ! -d $CAVE_DIR ]
|
|
then
|
|
echo "CAVE and/or gfeclient not installed on this workstation ..exiting"
|
|
exit 1
|
|
else
|
|
$_GFECLI $_MODULE "$@"
|
|
fi
|
|
|