add / to MDBCI_VM_PATH
If case of MDBCI_VM_PATH variable does not have trailing slash full names of _network_config and _lables files are defined in the wrong way: MDBCI_VM_PATH is interpreted as a part of file name instead of direcoty name
This commit is contained in:
parent
7ecc70fd5d
commit
a920534e94
@ -557,7 +557,7 @@ void TestConnections::read_mdbci_info()
|
||||
target = readenv("target", "develop");
|
||||
|
||||
mdbci_config_name = readenv("mdbci_config_name", "local");
|
||||
vm_path = std::string(mdbci_vm_path) + std::string(mdbci_config_name);
|
||||
vm_path = std::string(mdbci_vm_path) + std::string("/") + std::string(mdbci_config_name);
|
||||
if (mdbci_config_name != NULL)
|
||||
{
|
||||
std::ifstream nc_file;
|
||||
|
Loading…
x
Reference in New Issue
Block a user