From a4adb7c5827868fa371c9c4c536ae6182d95832a Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Fri, 19 Jul 2024 21:54:26 +0000 Subject: [PATCH] Fixed Jenkinsfile syntax. --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index e6d6af1..1a17db8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -26,7 +26,8 @@ pipeline { stage("Publish") { steps { sh '''#!/bin/bash - for file in Props.Shop/**/*.csproj do + for file in Props.Shop/**/*.csproj + do conda run -n base dotnet publish --configuration Release --output output/shop-modules $file done '''