Skip to content

Commit ee8eb20

Browse files
committed
allow unix selector in patches
1 parent 864f604 commit ee8eb20

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

vinca/main.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,11 @@ def read_vinca_yaml(filepath):
174174
if splitted[1] in ("osx", "linux", "win"):
175175
patches[splitted[0]][splitted[1]].append(x)
176176
continue
177+
if splitted[1] == "unix":
178+
patches[splitted[0]]["linux"].append(x)
179+
patches[splitted[0]]["osx"].append(x)
180+
continue
181+
177182
patches[splitted[0]]["any"].append(x)
178183

179184
vinca_conf["_patches"] = patches

0 commit comments

Comments
 (0)