changeset 1642:73651ad7ad13

Move package announcement earlier so extracted (non-tarball) packages announce themselves.
author Rob Landley <rob@landley.net>
date Sun, 30 Mar 2014 21:28:28 -0500
parents f979c6bc7d13
children 87d793ebda4a
files sources/download_functions.sh
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/sources/download_functions.sh	Thu Mar 20 06:03:41 2014 -0500
+++ b/sources/download_functions.sh	Sun Mar 30 21:28:28 2014 -0500
@@ -111,14 +111,14 @@
 {
   mkdir -p "$SRCTREE" || dienow
 
+  # Announce to the world that we're cracking open a new package
+
   PACKAGE="$1"
+  announce "$PACKAGE"
+
   ! is_in_list "PACKAGE" "$IGNORE_REPOS" && [ -d "$SRCDIR/$PACKAGE" ] &&
     return 0
 
-  # Announce to the world that we're cracking open a new package
-
-  announce "$PACKAGE"
-
   # Find tarball, and determine type
 
   FILENAME="$(find_package_tarball "$PACKAGE")"