Use -noprofile in build.sh

This commit is contained in:
Andrew Schwartzmeyer 2016-05-18 14:24:08 -07:00
parent fcf4b38370
commit 730c8f04fe

View file

@ -1,8 +1,8 @@
#!/usr/bin/env bash
if hash powershell 2>/dev/null; then
echo 'Continuing with `powershell -c Start-PSBuild`'
powershell -c "Import-Module ./build.psm1; Start-PSBuild"
echo 'Continuing with `powershell -noprofile -c Start-PSBuild`'
powershell -noprofile -c "Import-Module ./build.psm1; Start-PSBuild"
else
echo 'No `powershell`, see docs/building/linux.md or osx.md to build PowerShell!'
fi