aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/vagrant-onap/tools
diff options
context:
space:
mode:
authorVictor Morales <victor.morales@intel.com>2017-08-30 14:50:43 -0500
committerVictor Morales <victor.morales@intel.com>2017-08-30 19:17:56 -0500
commite746700a7dfe469bb65a54d04a5d2202d7f56e9e (patch)
treef20096bfb8f132d9346aaff5baa1f578fae8a639 /bootstrap/vagrant-onap/tools
parent2fd432a29edd1117703d464cccb9831a57109449 (diff)
Create UTs for SDC
This change create a script that contains Unit Tests that covers functionality of SDC component. Change-Id: Ie51dac0fe112319da3f9522cdb36ac7de49d523d Signed-off-by: Victor Morales <victor.morales@intel.com> Issue-Id: INT-16
Diffstat (limited to 'bootstrap/vagrant-onap/tools')
-rwxr-xr-xbootstrap/vagrant-onap/tools/get_repos.sh5
1 files changed, 1 insertions, 4 deletions
diff --git a/bootstrap/vagrant-onap/tools/get_repos.sh b/bootstrap/vagrant-onap/tools/get_repos.sh
index 7e531bd95..ae5d4e0eb 100755
--- a/bootstrap/vagrant-onap/tools/get_repos.sh
+++ b/bootstrap/vagrant-onap/tools/get_repos.sh
@@ -19,7 +19,7 @@ repos=(
function git_clone_or_pull {
local repo=$1
- local folder="../opt/$1"
+ local folder="./opt/$1"
local mvn_build=$2
if [ ! -d $folder ]; then
git clone https://git.onap.org/$repo $folder
@@ -29,9 +29,6 @@ function git_clone_or_pull {
if [ -f .gitreview ]; then
git review -s
fi
- #if [ -f pom.xml ] && [ -n ${mvn_build+x} ]; then
- #mvn clean -q install -U -DskipTests=true -Dmaven.test.skip=true -Dadditionalparam=-Xdoclint:none
- #fi
popd > /dev/null
}