X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=scripts%2Fdebian%2Fbyhand-task;h=41f863c581befa127a3957633e7d223cd539ed77;hb=878f326ae708fa5c918e5e63c274fe012ac038f8;hp=015256dc64acc7d1950b3870a6ad59eb9178aef7;hpb=bba1c2f72f628fd1a5d111caed5796f652563ca6;p=dak.git diff --git a/scripts/debian/byhand-task b/scripts/debian/byhand-task index 015256dc..41f863c5 100755 --- a/scripts/debian/byhand-task +++ b/scripts/debian/byhand-task @@ -1,10 +1,11 @@ -#!/bin/sh +#!/bin/bash set -u set -e +set -o pipefail -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 @@ -15,19 +16,14 @@ INPUT="$1" # Tarball to read, compressed with gzip VERSION="$2" ARCH="$3" CHANGES="$4" # Changes file for the upload +SUITE="$5" error() { echo "$*" exit 1 } -# 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 - "") - error "Error: unable to determine suite from Changes file" - ;; unstable|sid) : # OK for automated byband processing ;; @@ -64,7 +60,8 @@ mv "$OUTMAIN" "$TARGET"task chmod 644 "$TARGET"task -(cd $TARGET && $scriptsdir/mk-extra-overrides.sh) +dak external-overrides import unstable main Task <"$TARGET"task +dak external-overrides copy unstable testing trap - EXIT