diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-12-21 11:35:32 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-12-21 11:35:32 -0200 |
commit | 8989ed732ebbaf69223ce7e54b5fc6066c00c5f3 (patch) | |
tree | 3ebbe9a7be8ee4074441d3677d75e3fe31317737 | |
parent | 3bd2bb45bb5414d3155483435e0c82c300c3df96 (diff) | |
download | qutebrowser-8989ed732ebbaf69223ce7e54b5fc6066c00c5f3.tar.gz qutebrowser-8989ed732ebbaf69223ce7e54b5fc6066c00c5f3.tar.bz2 |
Add -y into apt install
-rwxr-xr-x | qutebrowser | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qutebrowser b/qutebrowser index e16aab8..c7260b3 100755 --- a/qutebrowser +++ b/qutebrowser @@ -16,7 +16,7 @@ else # Check for tox if ! which tox &> /dev/null; then - sudo apt install tox + sudo apt install -y tox fi # Build qutebrowser @@ -24,7 +24,7 @@ else # Check for doc builder if ! dpkg-query -W -f='${Status}' asciidoc | grep -q '^install ok'; then - sudo apt install --no-install-recommends asciidoc source-highlight + sudo apt install -y --no-install-recommends asciidoc source-highlight fi # Build docs |