We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0670e0b commit 3b728fdCopy full SHA for 3b728fd
pre_commit/languages/node.py
@@ -79,7 +79,7 @@ def install_environment(
79
80
# https://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx?f=255&MSPPError=-2147217396#maxpath
81
if sys.platform == 'win32': # pragma: no cover
82
- envdir = f'\\\\?\\{os.path.normpath(envdir)}'
+ envdir = fr'\\?\{os.path.normpath(envdir)}'
83
with clean_path_on_failure(envdir):
84
cmd = [
85
sys.executable, '-mnodeenv', '--prebuilt', '--clean-src', envdir,
0 commit comments