This website works better with JavaScript.
Home
Explore
Help
Sign In
alma
/
pyalma
Watch
1
Star
0
Fork
0
Code
Issues
5
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
implemented "include" for batch files
master
Tom Krüger
4 years ago
parent
86d4176fcc
commit
9752cc8900
1 changed files
with
4 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
al2/batch.py
+ 4
- 0
al2/batch.py
View File
@ -35,4 +35,8 @@ def __load_batch_obj(batch_obj):
paths
.
extend
(
__load_batch_obj
(
batch
)
)
if
"
include
"
in
batch_obj
:
for
batch_file
in
batch_obj
[
"
include
"
]
:
paths
.
extend
(
load
(
pl
.
Path
(
instance_dir
,
batch_file
)
)
)
return
paths
Write
Preview
Loading…
Cancel
Save