From: Andrea Zagli Date: Sun, 11 Sep 2022 15:57:12 +0000 (+0200) Subject: Check if file already downloaded. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=709ac258b0cb8da05acc2d909c815e8ca840550c;p=nixdeb Check if file already downloaded. --- diff --git a/nixdeb.sh b/nixdeb.sh index b5a3494..bbc3a63 100755 --- a/nixdeb.sh +++ b/nixdeb.sh @@ -14,6 +14,11 @@ do filename=$(apt-get download --print-uris $p | awk '{print $2}') +# check if already downloaded +if [ -f $filename ]; then + continue +fi + INSTALL_DIR_PKG=$INSTALL_DIR/$filename mkdir -p $INSTALL_DIR_PKG