From 164c0888a3a7185eed2df1dc7d9c65a70706e946 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Sat, 12 Sep 2020 14:40:59 -0500 Subject: [PATCH] =?UTF-8?q?fix(directory):=20=F0=9F=90=9B=20rm=20obsolete?= =?UTF-8?q?=20'src'=20sub-dir?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- services/Directory/azure-pipelines.migrate.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/Directory/azure-pipelines.migrate.yaml b/services/Directory/azure-pipelines.migrate.yaml index ecc38c93b..8fe76c396 100644 --- a/services/Directory/azure-pipelines.migrate.yaml +++ b/services/Directory/azure-pipelines.migrate.yaml @@ -93,7 +93,7 @@ steps: condition: and(eq(variables['abortJustMigrated.aborted'], 'false'), succeeded()) inputs: targetType: inline - workingDirectory: services/Directory/src + workingDirectory: services/Directory script: | MIGLIST=$(dotnet ef migrations list -p FilterLists.Directory.Infrastructure.Migrations -s FilterLists.Directory.Api) echo "$MIGLIST" @@ -122,7 +122,7 @@ steps: displayName: add migration condition: and(eq(variables['abortJustMigrated.aborted'], 'false'), succeeded()) inputs: - workingDirectory: services/Directory/src + workingDirectory: services/Directory script: dotnet ef migrations add $(System.PullRequest.PullRequestNumber) -p FilterLists.Directory.Infrastructure.Migrations -s FilterLists.Directory.Api - task: Bash@3