mirror of
https://gitlab.com/kupfer/kupferbootstrap.git
synced 2025-06-27 10:45:37 -04:00
global: refactor to use config.{file,runtime}.$member instead of config.file["$member"]
This commit is contained in:
parent
ba13293b93
commit
8ad18c00a6
15 changed files with 66 additions and 54 deletions
2
ssh.py
2
ssh.py
|
@ -32,7 +32,7 @@ def run_ssh_command(cmd: list[str] = [],
|
|||
extra_args = []
|
||||
if len(keys) > 0:
|
||||
extra_args += ['-i', keys[0]]
|
||||
if config.runtime['verbose']:
|
||||
if config.runtime.verbose:
|
||||
extra_args += ['-v']
|
||||
if alloc_tty:
|
||||
extra_args += ['-t']
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue