apple / pkl

A configuration as code language with rich validation and tooling.
https://pkl-lang.org
Apache License 2.0
9.85k stars 258 forks source link

Reads with same glob pattern return same result even if located in different modules/directories #475

Closed translatenix closed 2 weeks ago

translatenix commented 2 months ago

dir1/mod.pkl:

foo = read*("foo*")

dir2/mod.pkl:

foo = read*("foo*") // always returns same result as dir1/mod.foo
pkl eval dir1/mod.pkl dir2/mod.pkl

Fixed by: https://github.com/apple/pkl/pull/449

bioball commented 2 weeks ago

Fixed in 0.26.