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