blob: 0c65d54386521d1905d6d676c9f705b2a1df244e [file] [log] [blame]
sebdetdf353be2020-09-21 22:13:05 +02001#!/bin/sh
Michael Lando5b593492018-07-29 16:13:45 +03002
3##############################
4# Distribution Status Update 1707
5##############################
6
7CURRENT_DIR=`pwd`
8BASEDIR=$(dirname $0)
9
sebdetdf353be2020-09-21 22:13:05 +020010if [ `echo ${BASEDIR} | cut -c1-1` = "/" ]
Michael Lando5b593492018-07-29 16:13:45 +030011then
12 FULL_PATH=$BASEDIR
13else
14 FULL_PATH=$CURRENT_DIR/$BASEDIR
15fi
16
sebdetdf353be2020-09-21 22:13:05 +020017. ${FULL_PATH}/baseOperation.sh
Michael Lando5b593492018-07-29 16:13:45 +030018
19mainClass="org.openecomp.sdc.asdctool.main.DeleteComponentTool"
20
21command="java $JVM_LOG_FILE -cp $JARS $mainClass $@"
22echo $command
23
24$command
25result=$?
26
27
28
29echo "***********************************"
30echo "***** $result *********************"
31echo "***********************************"
32
33exit $result
34
35