Commit 733ecf2
committed
Fix issue #53: use package target instead of default-target for path
The bug was in config.py line 103, which used the 'target' variable
(always equal to default-target) instead of package["target"]
(which may contain a custom per-package target setting).
This fix ensures that:
- Packages with custom target settings are checked out to their
specified directory
- Packages without custom target continue to use default-target
- Variable interpolation like ${settings:docs-directory} works correctly
The previously failing test now passes, demonstrating the fix works.
Fixes #531 parent ef5b4d3 commit 733ecf2
2 files changed
+5
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
5 | 8 | | |
6 | 9 | | |
7 | 10 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
100 | 100 | | |
101 | 101 | | |
102 | 102 | | |
103 | | - | |
| 103 | + | |
| 104 | + | |
104 | 105 | | |
105 | 106 | | |
106 | 107 | | |
| |||
0 commit comments