diff options
author | Victor Morales <victor.morales@intel.com> | 2017-08-31 16:30:23 -0500 |
---|---|---|
committer | Victor Morales <victor.morales@intel.com> | 2017-08-31 16:30:23 -0500 |
commit | 43906e6063a8296517051236eb14fc9a9ddcb26c (patch) | |
tree | f568c537c40dda43d1da2f5aa1194a36df23b2b2 /bootstrap/vagrant-onap/lib | |
parent | a3949e28940263815eb2793e7cae602d70a29290 (diff) |
Fix SDC compile option
The compile_all_sdc_repos function was cloning sdc repositories
instead of compile it. This change fix that behavior.
Change-Id: Icc9478bda6e64b2176817a22b6ba031f763459f4
Signed-off-by: Victor Morales <victor.morales@intel.com>
Issue-Id: INT-16
Diffstat (limited to 'bootstrap/vagrant-onap/lib')
-rw-r--r-- | bootstrap/vagrant-onap/lib/sdc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap/vagrant-onap/lib/sdc b/bootstrap/vagrant-onap/lib/sdc index 1c872fa48..275f64485 100644 --- a/bootstrap/vagrant-onap/lib/sdc +++ b/bootstrap/vagrant-onap/lib/sdc @@ -56,7 +56,7 @@ function clone_all_sdc_repos { # compile_all_sdc_repos() - Function that compiles SDC source repo. function compile_all_sdc_repos { - clone_repo sdc $sdc_src_folder + compile_src sdc $sdc_src_folder for dirc in ${sdc_repos[@]}; do compile_src $sdc_src_folder/$dirc |