packages.cmd_sideload(): fix string escape '\*' -> '\\*'
This commit is contained in:
parent
e001d107c2
commit
1c6689f710
1 changed files with 1 additions and 1 deletions
|
@ -734,7 +734,7 @@ def cmd_sideload(paths: Iterable[str], arch: Optional[Arch] = None, no_build: bo
|
|||
'-U',
|
||||
] + [os.path.join('/tmp', os.path.basename(file)) for file in files] + [
|
||||
'--noconfirm',
|
||||
'--overwrite=\*',
|
||||
'--overwrite=\\*',
|
||||
],
|
||||
alloc_tty=True).check_returncode()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue