exec: migrate exec.py to exec/cmd.py
This commit is contained in:
parent
72ca2258d1
commit
879fd113f0
12 changed files with 11 additions and 11 deletions
|
@ -7,7 +7,7 @@ from shlex import quote as shell_quote
|
|||
from typing import Protocol, Union, Optional, Mapping
|
||||
from uuid import uuid4
|
||||
|
||||
from exec import run_root_cmd, generate_env_cmd, flatten_shell_script, wrap_in_bash
|
||||
from exec.cmd import run_root_cmd, generate_env_cmd, flatten_shell_script, wrap_in_bash
|
||||
from config import config
|
||||
from constants import Arch, CHROOT_PATHS
|
||||
from distro.distro import get_base_distro, get_kupfer_local, RepoInfo
|
||||
|
|
|
@ -5,7 +5,7 @@ from glob import glob
|
|||
from shutil import rmtree
|
||||
|
||||
from constants import Arch
|
||||
from exec import run_root_cmd
|
||||
from exec.cmd import run_root_cmd
|
||||
|
||||
from .abstract import Chroot, get_chroot
|
||||
from .helpers import base_chroot_name
|
||||
|
|
|
@ -7,7 +7,7 @@ from typing import Optional
|
|||
from config import config
|
||||
from constants import Arch, GCC_HOSTSPECS, CROSSDIRECT_PKGS, CHROOT_PATHS
|
||||
from distro.distro import get_kupfer_local
|
||||
from exec import run_root_cmd
|
||||
from exec.cmd import run_root_cmd
|
||||
|
||||
from .abstract import Chroot, get_chroot
|
||||
from .helpers import build_chroot_name
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue