From 3e176c502b1f70d14b3d135f792d80d25f860b36 Mon Sep 17 00:00:00 2001 From: Raluca Groza Date: Mon, 24 Jul 2023 12:01:46 +0300 Subject: [PATCH] CI: fix empty Windows.zip release artifact For the zip command without the -r option, Windows.zip on release contained empty folders. Signed-off-by: Raluca Groza --- CI/azure/prepare_assets.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CI/azure/prepare_assets.sh b/CI/azure/prepare_assets.sh index a44295d20..878b8bc5f 100755 --- a/CI/azure/prepare_assets.sh +++ b/CI/azure/prepare_assets.sh @@ -44,7 +44,7 @@ release_artifacts() { done cp /home/vsts/work/1/s/CI/azure/README.txt ./Windows cd Windows - zip Windows.zip ./* + zip -r Windows.zip ./* cp ./Windows.zip ../ cd .. rm -r Windows