Skip to content

Commit

Permalink
Merge pull request #194 from datalad/bf-apt-install
Browse files Browse the repository at this point in the history
Always provide -y   to apt-get install
  • Loading branch information
yarikoptic authored Feb 16, 2024
2 parents 2196b1b + 0fc1b1d commit 45655a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/datalad_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1545,7 +1545,7 @@ def install_package(
if build_dep:
cmd.append("build-dep")
else:
cmd.append("install")
cmd.extend(["install", "-y"])
if extra_args:
cmd.extend(extra_args)
if version is not None:
Expand Down

0 comments on commit 45655a6

Please sign in to comment.