Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
fix: failure to properly apply default remote prefix in combination w…
…ith the unpack marker (#1448) * fix: failure to properly apply default remote prefix in combination with the unpack marker * only in case of from_callable
- Loading branch information
1 parent
dd27209
commit 82666f1
Showing
4 changed files
with
41 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
def get_files(wildcards): | ||
files_1 = expand("file_{i}", i=list(range(1, 5))) | ||
files_2 = expand("file_{i}", i=list(range(5, 9))) | ||
return {"files_1": files_1, "files_2": files_2} | ||
|
||
|
||
rule all: | ||
input: | ||
unpack(get_files), | ||
|
||
|
||
rule make_files: | ||
output: | ||
expand("file_{i}", i=list(range(1, 9))), | ||
shell: | ||
"touch {output}" |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters