Fix deploy.

This commit is contained in:
Brad Nelson
2024-01-01 23:07:29 -08:00
parent af26e61de9
commit 5d0f2ad3b9
3 changed files with 11 additions and 2 deletions

View File

@ -428,11 +428,13 @@ def ForthTest(target, forth, test, interp='', pool=None):
return target
def Command(target, source, command, implicit=[]):
def Command(target, source, command, implicit=[], pool=None):
global output
implicit = ' '.join(implicit)
output += f'build {target}: cmd {source} | {implicit}\n'
output += f' cmd = {command}\n'
if pool:
output += f' pool = {pool}\n'
return target