diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-03-02 21:59:10 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-03-02 21:59:10 +0000 |
commit | 964af191e5d959ad855636cbab2dfa1350cbfa9e (patch) | |
tree | ffa54596302f86f1c2c233e280dc13b3c6b2bbe3 /bootstrap/vagrant-onap/lib/vid | |
parent | 10d984c3606b5c6a026dea4b9df0954d74d0a8d1 (diff) | |
parent | f8730f5f8d0e044fac2f76f465f285736446c5ca (diff) |
Merge "Remove customize src_folder variables"
Diffstat (limited to 'bootstrap/vagrant-onap/lib/vid')
-rwxr-xr-x | bootstrap/vagrant-onap/lib/vid | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap/vagrant-onap/lib/vid b/bootstrap/vagrant-onap/lib/vid index f5ca9d293..0c7ad8536 100755 --- a/bootstrap/vagrant-onap/lib/vid +++ b/bootstrap/vagrant-onap/lib/vid @@ -5,9 +5,9 @@ source /var/onap/functions # _build_vid_images() - Function that builds VID docker images function _build_vid_images { if [[ "$compile_repo" != "True" ]]; then - compile_src $vid_src_folder + compile_src ${src_folders[vid]} fi - build_docker_image $vid_src_folder/deliveries + build_docker_image ${src_folders[vid]}/deliveries } # get_vid_images() - Function that retrieves VID docker images |