Fixed error with prefab targets

This commit is contained in:
Eric Froemling 2020-04-20 12:45:04 -07:00
parent 5114280d0a
commit eb821126ac

View File

@ -466,7 +466,7 @@ def make_prefab(target: PrefabTarget) -> None:
else:
raise RuntimeError(f'Invalid target: {target}')
run(f'make {target}')
run(f'make {mtarget}')
def _vstr(nums: Sequence[int]) -> str: