diff options
author | Victor Morales <victor.morales@intel.com> | 2017-08-30 14:50:43 -0500 |
---|---|---|
committer | Victor Morales <victor.morales@intel.com> | 2017-08-30 19:17:56 -0500 |
commit | e746700a7dfe469bb65a54d04a5d2202d7f56e9e (patch) | |
tree | f20096bfb8f132d9346aaff5baa1f578fae8a639 /bootstrap/vagrant-onap/tools/get_repos.sh | |
parent | 2fd432a29edd1117703d464cccb9831a57109449 (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/get_repos.sh')
-rwxr-xr-x | bootstrap/vagrant-onap/tools/get_repos.sh | 5 |
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 } |