Changeset 84047 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Apr 28, 2020 1:40:01 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageAppliance.cpp
r84038 r84047 1895 1895 Utf8Str strApplianceFullPath; 1896 1896 1897 if (strOvfFilename.isEmpty()) 1898 return RTMsgErrorExit(RTEXITCODE_FAILURE, "The OVA package name is empty"); 1899 1897 1900 do 1898 1901 { 1902 char *pszAbsFilePath = RTPathAbsDup(strOvfFilename.c_str()); 1903 1904 if (!RTFileExists(pszAbsFilePath)) 1905 return RTMsgErrorExit(RTEXITCODE_FAILURE, "The OVA package %s wasn't found", pszAbsFilePath); 1906 1899 1907 ComPtr<IAppliance> pAppliance; 1900 1908 CHECK_ERROR_BREAK(arg->virtualBox, CreateAppliance(pAppliance.asOutParam())); 1901 1902 char *pszAbsFilePath = RTPathAbsDup(strOvfFilename.c_str());1903 1909 1904 1910 ComPtr<IProgress> progressRead;
Note:
See TracChangeset
for help on using the changeset viewer.