We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed6444f commit ca6362aCopy full SHA for ca6362a
cwltool/utils.py
@@ -73,7 +73,7 @@ def docker_windows_path_adjust(path):
73
if path is not None and onWindows():
74
split = path.split(':')
75
if len(split) == 2:
76
- if int(platform.win32_ver()[0]) < 9: # type: ignore
+ if platform.win32_ver()[0] in ('7', '8'): # type: ignore
77
split[0] = split[0].lower() # Docker toolbox uses lowecase windows Drive letters
78
else:
79
split[0] = split[0].capitalize()
0 commit comments