Merge pull request #1023 from dotnet-architecture/fix/add-packages-layer

Fix restore packages script
This commit is contained in:
Miguel Veloso 2019-04-30 19:23:30 +01:00 committed by GitHub
commit 73d0c3f659
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View File

@ -1,6 +1,6 @@
$startTime = $(Get-Date) $startTime = $(Get-Date)
docker-compose build docker-compose build --build-arg RUN=scripts/restore-packages
$elapsedTime = $(Get-Date) - $startTime $elapsedTime = $(Get-Date) - $startTime

View File

@ -1,3 +1 @@
#!/bin/bash
for f in /src/csproj-files/*.csproj; do dotnet restore $f; done for f in /src/csproj-files/*.csproj; do dotnet restore $f; done