summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2022-05-25 00:43:13 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2022-05-25 00:43:13 +0200
commitfc48c863d6dc5eae21a2f8b5906f5c135f5864bd (patch)
tree82b9f9668d2c2aa5fe7183a539b84247f47e41f9
parentd1429558cd0959485115af5fc0ad09ea4fff7203 (diff)
Fix incorrect url
Change-Id: I2e61d00a5ff580573f1b234e3d652d9ee8f5d284 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
-rw-r--r--jjb/cntt/cntt.yaml6
1 files changed, 3 insertions, 3 deletions
diff --git a/jjb/cntt/cntt.yaml b/jjb/cntt/cntt.yaml
index 8615928e8..0941d747d 100644
--- a/jjb/cntt/cntt.yaml
+++ b/jjb/cntt/cntt.yaml
@@ -8,14 +8,14 @@
(cd {dir} && tox
wget -q -N https://dl.min.io/client/mc/release/linux-amd64/mc && chmod a+x mc
./mc cp -r -q build/ opnfv/artifacts.opnfv.org/$BUILD_TAG/{stream}
- echo -e "\nhttps://artifacts.opnfv.org/{stream}/$BUILD_TAG/index.html\n")
+ echo "\nhttps://artifacts.opnfv.org/{stream}/$BUILD_TAG/index.html\n")
fi
if [ -d {dir}/build ] && [ -f {dir}/build/Makefile ]; then
(cd {dir}/build && make
wget -q -N https://dl.min.io/client/mc/release/linux-amd64/mc && chmod a+x mc
for i in *.pdf; do
- ./mc cp -r -q $i opnfv/artifacts.opnfv.org/$BUILD_TAG/{stream}
- echo -e "\nhttps://artifacts.opnfv.org/{stream}/$BUILD_TAG/$i\n"
+ ./mc cp -r -q $i opnfv/artifacts.opnfv.org/{stream}/$BUILD_TAG
+ echo "\nhttps://artifacts.opnfv.org/{stream}/$BUILD_TAG/$i\n"
done)
fi