From: Hugo Villeneuve Date: Sat, 13 Dec 2014 16:05:25 +0000 (-0500) Subject: Fix bug when fetching unavailable package X-Git-Url: http://gitweb.hugovil.com/?a=commitdiff_plain;h=405a39d61ac90e763e7428d02447c6b977cad559;p=hvlinux.git Fix bug when fetching unavailable package --- diff --git a/functions/fpkg b/functions/fpkg index 133b123..673299b 100644 --- a/functions/fpkg +++ b/functions/fpkg @@ -640,10 +640,15 @@ fpkg() rm ${DEST_FILE} fi - if [ ! -f ${DEST_FILE} ]; then + if [ ! -f ${DEST_FILE} ]; then # Fetch package set +e static_getpkg ${SRC_FILENAME} ${URL} ${FILE_EXT} + rc=$? + + if [ ${rc} -ne 0 ]; then + return ${rc}; + fi set -e # Move file if source filename is not equal to package name and/or