Remove unneeded #!/bin/bash from script and remove line endings to avoid errors depending on git config on Windows

This commit is contained in:
Miguel Veloso 2019-04-30 19:19:11 +01:00
parent 5b9692cb2e
commit ba721aa65c
2 changed files with 2 additions and 4 deletions

View File

@ -1,6 +1,6 @@
$startTime = $(Get-Date)
docker-compose build
docker-compose build --build-arg RUN=scripts/restore-packages
$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