diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-11-19 13:59:12 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-11-19 13:59:12 -0200 |
commit | eb800d05572854cf7cbb76b9a83503a0b3f375ed (patch) | |
tree | 548397c747f63a5b1a1f61dcda49abdf5f16fbfa | |
parent | c88480e3ecd3cffccfb65a4f68658ea5dd409bf5 (diff) | |
download | stowpkg-eb800d05572854cf7cbb76b9a83503a0b3f375ed.tar.gz stowpkg-eb800d05572854cf7cbb76b9a83503a0b3f375ed.tar.bz2 |
Use apt -y for resolving dependencies
-rwxr-xr-x | stowpkg | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -159,7 +159,7 @@ stowpkg_install () { # Resolve debian dependencies if [ -e "/etc/debian_version" ]; then if [ ! -z "$dependencies_debian" ]; then - $SUDO apt install $dependencies_debian + $SUDO apt install -y $dependencies_debian fi fi |