Skip to content

Commit

Permalink
feat: add oma install arg --force-unsafe-io
Browse files Browse the repository at this point in the history
  • Loading branch information
eatradish authored and MingcongBai committed Nov 2, 2024
1 parent ca14700 commit 1cae928
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acbs/pm.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def install_from_repo_apt(packages: List[str]):

def install_from_repo_oma(packages: List[str]) -> bool:
logging.debug('Installing %s from oma' % packages)
command = ['oma', 'install', '-y', '--force-confnew', '--no-progress']
command = ['oma', 'install', '-y', '--force-confnew', '--no-progress', '--force-unsafe-io']
command.extend(packages)
try:
subprocess.check_call(command)
Expand Down

0 comments on commit 1cae928

Please sign in to comment.