myPrayerJournal/build.ps1

9 lines
201 B
PowerShell
Raw Normal View History

2020-06-07 12:19:47 +00:00
#!/snap/bin/pwsh
Set-Location ./src/my-prayer-journal
npm run build
if ($?) {
Copy-Item ./dist/my-prayer-journal/* ../MyPrayerJournal.Api/wwwroot
Set-Location ../MyPrayerJournal.Api
dotnet run
}