From 709ac258b0cb8da05acc2d909c815e8ca840550c Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sun, 11 Sep 2022 17:57:12 +0200 Subject: [PATCH] Check if file already downloaded. --- nixdeb.sh | 5 +++++ 1 file changed, 5 insertions(+) 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 -- 2.49.0