added setup code execution logic
This commit is contained in:
parent
51e058e74a
commit
9ab4271fb4
1 changed files with 4 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
||||||
import inquirer
|
import inquirer
|
||||||
from glob import glob
|
from glob import glob
|
||||||
from ..util import import_file
|
from ..util import import_file
|
||||||
|
from src.log import log
|
||||||
|
|
||||||
|
|
||||||
def choose_action():
|
def choose_action():
|
||||||
|
@ -19,4 +20,6 @@ def choose_action():
|
||||||
|
|
||||||
for action_name in response["actions"]:
|
for action_name in response["actions"]:
|
||||||
module = import_file(action_name, f"src/setup/{action_name}")
|
module = import_file(action_name, f"src/setup/{action_name}")
|
||||||
print(module.name)
|
# todo: deal with module.post_install
|
||||||
|
log(f"Setting up: {module.name} ({action_name})")
|
||||||
|
module.setup()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue