From 64227f2854543305a4952eeb4b07e629d883867f Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Jan 26 2018 13:27:37 +0000 Subject: scripts: TARGET_DIR should not have trailing slash The TARGET_DIR values in just these few nightly scripts have trailing slashes. They shouldn't, it'll lead to double slashes in all the places that use TARGET_DIR as they expect it not to have one. Signed-off-by: Adam Williamson --- diff --git a/cloud-nightly.sh b/cloud-nightly.sh index 0561686..cca6e12 100755 --- a/cloud-nightly.sh +++ b/cloud-nightly.sh @@ -6,7 +6,7 @@ LABEL=$1 # to the script are passed to pungi-koji directly. shift CONFIG="fedora-cloud.conf" -TARGET_DIR="/mnt/koji/compose/" +TARGET_DIR="/mnt/koji/compose" #OLD_COMPOSES_DIR="--old-composes=/mnt/fedora_koji/compose/f23 --old-composes=$TARGET_DIR" NIGHTLY="" SKIP_PHASES="--skip-phase=productimg --skip-phase=pkgset --skip-phase=gather --skip-phase=extra_files --skip-phase=creatrepo" diff --git a/docker-nightly.sh b/docker-nightly.sh index 34a9f20..87f422c 100755 --- a/docker-nightly.sh +++ b/docker-nightly.sh @@ -5,7 +5,7 @@ LABEL=$1 # to the script are passed to pungi-koji directly. shift CONFIG="fedora-docker.conf" -TARGET_DIR="/mnt/koji/compose/" +TARGET_DIR="/mnt/koji/compose" #OLD_COMPOSES_DIR="--old-composes=/mnt/fedora_koji/compose/f23 --old-composes=$TARGET_DIR" NIGHTLY="" SKIP_PHASES="--skip-phase=productimg --skip-phase=pkgset --skip-phase=gather --skip-phase=extra_files --skip-phase=creatrepo"