aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-11-19 13:59:12 -0200
committerSilvio Rhatto <rhatto@riseup.net>2017-11-19 13:59:12 -0200
commiteb800d05572854cf7cbb76b9a83503a0b3f375ed (patch)
tree548397c747f63a5b1a1f61dcda49abdf5f16fbfa
parentc88480e3ecd3cffccfb65a4f68658ea5dd409bf5 (diff)
downloadstowpkg-eb800d05572854cf7cbb76b9a83503a0b3f375ed.tar.gz
stowpkg-eb800d05572854cf7cbb76b9a83503a0b3f375ed.tar.bz2
Use apt -y for resolving dependencies
-rwxr-xr-xstowpkg2
1 files changed, 1 insertions, 1 deletions
diff --git a/stowpkg b/stowpkg
index 9bcdbe5..da22e89 100755
--- a/stowpkg
+++ b/stowpkg
@@ -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