Changeset 86436 in vbox
- Timestamp:
- Oct 4, 2020 11:36:35 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/common/webutils.py
r82968 r86436 174 174 else: 175 175 # Assumes file from the build share. 176 sSrcPath = os.path.join(sLocalPrefix, sUrlFile); 176 if sUrlFile.startswith('file:///'): 177 sSrcPath = sUrlFile[7:]; 178 elif sUrlFile.startswith('file://'): 179 sSrcPath = sUrlFile[6:]; 180 elif os.path.isabs(sUrlFile): 181 sSrcPath = sUrlFile; 182 else: 183 sSrcPath = os.path.join(sLocalPrefix, sUrlFile); 177 184 fnLog('Copying "%s" to "%s"...' % (sSrcPath, sDstFile)); 178 185 try:
Note:
See TracChangeset
for help on using the changeset viewer.