summarylogtreecommitdiffstats
path: root/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 89b5550c51c0..de97396b2159 100755
--- a/build.sh
+++ b/build.sh
@@ -1,5 +1,7 @@
#!/usr/bin/env bash
+dotnet restore
+
pushd src/ResGen
dotnet run -c Linux
popd
@@ -13,6 +15,6 @@ dotnet run -c Linux ../Microsoft.PowerShell.CoreCLR.AssemblyLoadContext/CorePsT
popd
cd src/powershell-unix
-dotnet -v build -c Linux && dotnet publish --no-build -c Linux
+dotnet build -c Linux && dotnet publish --no-build -c Linux
# vim:set ts=2 sw=2 et: