Fix bug when fetching unavailable package
authorHugo Villeneuve <hugo@hugovil.com>
Sat, 13 Dec 2014 16:05:25 +0000 (11:05 -0500)
committerHugo Villeneuve <hugo@hugovil.com>
Sat, 27 Dec 2014 05:01:50 +0000 (00:01 -0500)
functions/fpkg

index 133b123..673299b 100644 (file)
@@ -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