From 2b0fe14676b27f9e6045dc9de9ed175bcd2d9a95 Mon Sep 17 00:00:00 2001 From: Timofey Turenko Date: Wed, 7 Aug 2019 19:45:52 +0300 Subject: [PATCH] fix sles link creation --- BUILD/mdbci/copy_repos.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/BUILD/mdbci/copy_repos.sh b/BUILD/mdbci/copy_repos.sh index 9a3bd91f3..517ef82dd 100755 --- a/BUILD/mdbci/copy_repos.sh +++ b/BUILD/mdbci/copy_repos.sh @@ -34,7 +34,9 @@ if [ "$box_type" == "RPM" ] ; then fi if [ "$platform" == "opensuse" ] ; then mkdir -p sles - ln -s opensuse/$platform_version sles/$platform_version + cd sles + ln -s ../opensuse/$platform_version $platform_version + cd .. fi