]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Ensure path for finding root is absolute (#1550)
authordhaug-op <56020126+dhaug-op@users.noreply.github.com>
Wed, 15 Jul 2020 15:06:30 +0000 (17:06 +0200)
committerGitHub <noreply@github.com>
Wed, 15 Jul 2020 15:06:30 +0000 (08:06 -0700)
As Path.resolve() is buggy on windows (see https://bugs.python.org/issue38671)
an absolute path is ensured by prepending the Path.cwd()

src/black/__init__.py

index 3d0a2d690694ced9dbee089fe64c17d34b76a774..930f2cb0ae5d5525eb48779b6b1149875b870628 100644 (file)
@@ -5834,7 +5834,7 @@ def find_project_root(srcs: Iterable[str]) -> Path:
     if not srcs:
         return Path("/").resolve()
 
-    path_srcs = [Path(src).resolve() for src in srcs]
+    path_srcs = [Path(Path.cwd(), src).resolve() for src in srcs]
 
     # A list of lists of parents for each 'src'. 'src' is included as a
     # "parent" of itself if it is a directory