aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoelacanthus <[email protected]>2021-10-25 20:45:54 +0800
committerCoelacanthus <[email protected]>2021-10-25 20:47:13 +0800
commit85730f64df10be1bdc66aa110651c84fbbded40f (patch)
tree745f2cb8ac7173727ec29d5b7a4baa22bf95c54e
parentdd5417b7205add9373ac98d13c8670c4f6a44113 (diff)
fix: print info of uploading package
Signed-off-by: Coelacanthus <[email protected]>
-rwxr-xr-xci-upload.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/ci-upload.sh b/ci-upload.sh
index 74c148a..5f2ae57 100755
--- a/ci-upload.sh
+++ b/ci-upload.sh
@@ -19,7 +19,9 @@ curl -d "token=$UPLOAD_TOKEN&action=REQUIRE_CLEAN" -fsSL "$REMOTE_PATH"
pushd $PKGDEST
for file in *.pkg*; do
+ echo "Start upload package $file ..."
curl -F "file=@$file" -F "token=$UPLOAD_TOKEN" -fsSL "$REMOTE_PATH"
+ echo "Stop upload package $file"
done
popd