mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-10-07 17:40:30 +00:00
Fix #132
This commit is contained in:
parent
f8fb613457
commit
60a6fa0df2
1 changed files with 1 additions and 1 deletions
|
@ -10,5 +10,5 @@ class ImageExecuteCommand(Task):
|
|||
def run(cls, info):
|
||||
from common.tools import log_check_call
|
||||
for raw_command in info.manifest.plugins['image_commands']['commands']:
|
||||
command = map(lambda part: part.format(**info.manifest_vars), raw_command)
|
||||
command = map(lambda part: part.format(root=info.root, **info.manifest_vars), raw_command)
|
||||
log_check_call(command)
|
||||
|
|
Loading…
Add table
Reference in a new issue