]> git.decadent.org.uk Git - dak.git/blobdiff - scripts/debian/byhand-win32-loader
Pass suite name to the autobyhand scripts
[dak.git] / scripts / debian / byhand-win32-loader
index 3afc8d52882aee9032c8fee8ea566824686ebd19..ea4a1f909708cad2ce9ca1f99f5df71fc96bb6a2 100755 (executable)
@@ -3,8 +3,8 @@
 set -u
 set -e
 
-if [ $# -lt 4 ]; then
-       echo "Usage: $0 filename version arch changes_file"
+if [ $# -lt 5 ]; then
+       echo "Usage: $0 filename version arch changes_file suite"
        exit 1
 fi
 
@@ -16,16 +16,10 @@ WIN32_LOADER_FILE="${WIN32_LOADER_PATH##*/}"
 VERSION="$2"
 ARCH="$3"
 CHANGES="$4"   # Changes file for the upload
+SUITE="$5"
 
-# Get the target suite from the Changes file
-# NOTE: it may be better to pass this to the script as a parameter!
-SUITE="$(grep "^Distribution:" "$CHANGES" | awk '{print $2}')"
 case $SUITE in
-    "")
-           echo "Error: unable to determine suite from Changes file"
-        exit 1
-           ;;
-    unstable|sid)
+    unstable|sid|*-proposed-updates)
            : # nothing to do
            ;;
     *)