Skip to content

Commit 2cdb3ae

Browse files
committed
Fixed path separator on windows
1 parent 1c6eb33 commit 2cdb3ae

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ target/
5656

5757
# Local utility scripts
5858
analyze.py
59+
/out/
5960

6061
# Editor backup files
6162
*~

scripts/create_baseline_stubs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def main() -> None:
167167
sys.exit(1)
168168
project, version = info
169169

170-
stub_dir = os.path.join("stubs", project)
170+
stub_dir = os.path.join("stubs", project).replace("\\", "/")
171171
if os.path.exists(stub_dir):
172172
sys.exit(f"Error: {stub_dir} already exists (delete it first)")
173173

0 commit comments

Comments
 (0)