From 5d62d6202bfc42c625dda6e76a053306e124341e Mon Sep 17 00:00:00 2001 From: Jonathan Horn Date: Thu, 14 Apr 2022 20:28:48 +0200 Subject: [PATCH] fix pipeline --- Jenkinsfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ba2cebd..4f68bfc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -29,8 +29,7 @@ pipeline { stage('Test entityframework') { steps { sh 'dotnet tool install --global dotnet-ef' - sh 'export PATH="$PATH:/tmp/DOTNET_CLI_HOME/.dotnet/tools"' - sh 'dotnet ef dbcontext info --startup-project src/AV.AvA.StorageBackend/AV.AvA.StorageBackend.csproj --project src/AV.AvA.Data/AV.AvA.Data.csproj' + sh '/tmp/DOTNET_CLI_HOME/.dotnet/tools/dotnet-ef dbcontext info --startup-project src/AV.AvA.StorageBackend/AV.AvA.StorageBackend.csproj --project src/AV.AvA.Data/AV.AvA.Data.csproj' } } stage('Publish') {