From e2ffd6f9766e54ed60d0a84c9a4ddc5a7d44efa4 Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Fri, 19 Jul 2024 17:15:04 +0000 Subject: [PATCH] Minor fixes applied to Jenkinsfile. --- Jenkinsfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 81e91b1..3a754ca 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,11 +9,9 @@ pipeline { stages { stage("Install") { steps { - sh 'conda update conda' + sh 'conda update conda -y' sh 'conda env update -n base --file .devcontainer/environment.yml' - sh 'conda run -n base dotnet restore Props/Props.csproj' - sh 'conda run -n base dotnet restore Props.Tests/Props.Tests.csproj' - sh 'conda run -n base dotnet restore Props.Shop/Props.Shop.sln' + sh 'conda run -n base dotnet restore props.sln' sh 'npm install --prefix ./Props' } }