From 38faa7073b91e601108e0c23829edbf3199e808d Mon Sep 17 00:00:00 2001 From: Sven Dowideit Date: Mon, 12 Dec 2016 13:58:05 +1000 Subject: [PATCH] Fix the commanline hints to upload release Signed-off-by: Sven Dowideit --- scripts/ci | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/ci b/scripts/ci index 9c81e8fd..e97df381 100755 --- a/scripts/ci +++ b/scripts/ci @@ -14,8 +14,7 @@ echo "--- Run" echo "github-release release --user rancher --repo os --tag ${VERSION} --pre-release --draft" for file in $(ls dist/artifacts/); do if [ "$file" != "installer.tar" ]; then - echo "github-release upload --user rancher --repo os --tag ${VERSION} \ - --file ./dist/kernel/${file} -name ${file}" + echo "github-release upload --user rancher --repo os --tag ${VERSION} --file ./dist/artifacts/${file} --name ${file}" fi done echo