From 8250bba1208e8ed2b7f2697d3299dde2708f9a9d Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Thu, 8 Mar 2018 21:24:15 +0100 Subject: [PATCH] apt does not like --purge with clean --- install_yunohost | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_yunohost b/install_yunohost index 754aa43..d82a134 100755 --- a/install_yunohost +++ b/install_yunohost @@ -511,7 +511,7 @@ function clean_image() { find /var/log -type f -exec rm {} \; >> $YUNOHOST_LOG 2>&1 # Purging apt ... - apt-get --purge clean >> $YUNOHOST_LOG 2>&1 + apt-get clean >> $YUNOHOST_LOG 2>&1 }