From 4aef1efb3d664833579658706e0a185cbd0c2883 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 7 Nov 2016 02:57:17 +0000 Subject: [PATCH] Test suite: lib-reprepro: cope with non-codenamed suites Signed-off-by: Ian Jackson --- tests/lib-reprepro | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/lib-reprepro b/tests/lib-reprepro index 87020444..d025d48d 100644 --- a/tests/lib-reprepro +++ b/tests/lib-reprepro @@ -42,9 +42,11 @@ t-reprepro-setup () { local suite=${suitespec%%:*} local sname=${suitespec#*:} - mkdir $tmp/mirror/dists - rm -f $tmp/mirror/dists/$sname - ln -s $suite $tmp/mirror/dists/$sname + mkdir -p $tmp/mirror/dists + if [ $sname != $suite ]; then + rm -f $tmp/mirror/dists/$sname + ln -s $suite $tmp/mirror/dists/$sname + fi cat >&3 <