From 730c8f04feea048e72a32e1c522aaccece562359 Mon Sep 17 00:00:00 2001 From: Andrew Schwartzmeyer Date: Wed, 18 May 2016 14:24:08 -0700 Subject: [PATCH] Use -noprofile in build.sh --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 4c2afc7b8..aaab8c848 100755 --- a/build.sh +++ b/build.sh @@ -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