diff options
author | Victor Morales <victor.morales@intel.com> | 2018-03-02 13:24:33 -0800 |
---|---|---|
committer | Victor Morales <victor.morales@intel.com> | 2018-03-02 13:39:06 -0800 |
commit | f8730f5f8d0e044fac2f76f465f285736446c5ca (patch) | |
tree | 54346cdc671496edd71b7d72c625a1c51c52fb50 /bootstrap/vagrant-onap/lib/vid | |
parent | eed634e3decd94328291c8623a5e7fd37075eef0 (diff) |
Remove customize src_folder variables
There were some leftovers of variables used for pointing to the
project source code folder. This variables are not used anymore.
Change-Id: I355930f8ce6acbc31a1adca61741d7221dee196c
Signed-off-by: Victor Morales <victor.morales@intel.com>
Issue-ID: INT-367
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 |