Skip to content

Commit 4c8c3a0

Browse files
committed
fix for issue with source_download set to latest
1 parent 57c6d0d commit 4c8c3a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/pavilion/builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ def _update_src(self):
319319

320320
if (src_url is not None
321321
and ((src_download == 'missing' and found_src_path is None)
322-
or src_download == 'latest')):
322+
or src_download == 'latest' and found_src_path is None)):
323323

324324
if self._download_dest is None:
325325
raise TestBuilderError(

0 commit comments

Comments
 (0)