We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f48be17 commit 249fa77Copy full SHA for 249fa77
package.py
@@ -779,6 +779,9 @@ def commands_step(path, commands):
779
)
780
else:
781
batch.append(c)
782
+ if batch:
783
+ step("sh", path, "\n".join(batch))
784
+ batch.clear()
785
786
for claim in claims:
787
if isinstance(claim, str):
@@ -1526,6 +1529,7 @@ def prepare_command(args):
1526
1529
Outputs a filename and a command to run if the archive needs to be built.
1527
1530
"""
1528
1531
1532
+
1533
log = logging.getLogger("prepare")
1534
1535
# Load the query.
0 commit comments