Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Graph Importer: really delete the service definition directory before importing #3112

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
cd ./tools/importer-msgraph-metadata
make tools
make build
make import
make import-all-clean
env:
PANDORA_LOG: WARN

Expand Down
7 changes: 3 additions & 4 deletions tools/importer-msgraph-metadata/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,9 @@ import: build
# to fix design issues, which are actually issues in the API Data
dotnet format whitespace --verbosity quiet ../../data/Pandora.sln

import-with-api: build
./importer-rest-api-specs import --data-api=http://localhost:5000
# note we're intentionally only using whitespace here since the others try
# to fix design issues, which are actually issues in the API Data
import-all-clean: build
rm -r ../../data/Pandora.Definitions.MicrosoftGraph.*/[A-Z]*/
./importer-msgraph-metadata import
dotnet format whitespace --verbosity quiet ../../data/Pandora.sln

test: build
Expand Down
Loading