Changeset 81517 in vbox for trunk/src/VBox/Frontends/VBoxManage/VBoxManageAppliance.cpp
- Timestamp:
- Oct 24, 2019 12:54:46 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageAppliance.cpp
r81515 r81517 1475 1475 if (llMachines.empty()) 1476 1476 return errorSyntax(USAGE_EXPORTAPPLIANCE, "At least one machine must be specified with the export command."); 1477 if (!strOutputFile.length()) 1477 1478 /* Last check after parsing all arguments */ 1479 if (strOutputFile.isNotEmpty()) 1480 { 1481 if (actionType == NOT_SET) 1482 { 1483 if (fCloud) 1484 actionType = CLOUD; 1485 else 1486 actionType = LOCAL; 1487 } 1488 } 1489 else 1478 1490 return errorSyntax(USAGE_EXPORTAPPLIANCE, "Missing --output argument with export command."); 1479 1491
Note:
See TracChangeset
for help on using the changeset viewer.