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.
2 parents 681b173 + fcb36d4 commit 2e1099eCopy full SHA for 2e1099e
gitup/config.py
@@ -62,7 +62,7 @@ def add_bookmarks(paths, config_path=None):
62
config = _load_config_file(config_path)
63
added, exists = [], []
64
for path in paths:
65
- path = os.path.abspath(path)
+ path = os.path.normcase(os.path.abspath(path))
66
if path in config:
67
exists.append(path)
68
else:
@@ -86,7 +86,7 @@ def delete_bookmarks(paths, config_path=None):
86
deleted, notmarked = [], []
87
if config:
88
89
90
91
config.remove(path)
92
deleted.append(path)
0 commit comments