blob: 3e07fd5d9c841d35630ffcb755abe1861bfd537a [file] [log] [blame]
Bartosz Gardziejewski8e505aa2020-11-25 14:06:01 +01001#!/bin/bash
2set -e -o pipefail
3if [ -z "$PROJECT_ID" ]
4then
5 echo "ERROR: NO PROJECT ID ENTERED"
6 exit 1
7else
Bartosz Gardziejewski768660d2020-12-17 09:21:45 +01008 cd $WORKSPACE/generated/active-validation-rules/Honolulu/
Bartosz Gardziejewski8e505aa2020-11-25 14:06:01 +01009 for file in *.csv ; do
10 echo "-n --upload-file $file https://nexus.onap.org/content/sites/raw/$PROJECT_ID/Honolulu/$file"
11 curl -n --upload-file "$file" "https://nexus.onap.org/content/sites/raw/$PROJECT_ID/Honolulu/$file"
12 done
13 exit 0
14fi