Skip to content

Commit 8c1dece

Browse files
committedMar 4, 2025
final target should be based on data_dir, not build_dir
1 parent b01f22b commit 8c1dece

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎wellies/data.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def __init__(self, data_dir, name, options, build_dir=None):
149149
else:
150150
if not isinstance(files, list):
151151
files = [files]
152-
files = [os.path.join(build_dir, name, f) for f in files]
152+
files = [os.path.join(data_dir, name, f) for f in files]
153153
script = [
154154
pf.TemplateScript(
155155
scripts.git_script,

0 commit comments

Comments
 (0)