blob: 0ee3fc197fa6920df9121db9bda7f23846d80d93 (
plain)
1
2
3
4
5
6
7
8
|
toolsDir=$PROJECT_HOME/tools
. ${toolsDir}/setClasspath
if [ "$#" != "1" ]
then
echo "Usage $0 className_without_the_dot_class_ext"
exit
fi
java org.onap.ccsdk.sli.core.sli.provider.PrintYangToProp $1
|