PowerShell/build.sh
Zakaria Ridouh e4f3f8fd69 OS X -> macOS (#1934)
Fix all documentation references of "OS X" to be "macOS", Apple's new brand.

Code is left unchanged because we're matching .NET Core.
2016-08-26 15:08:50 -04:00

9 lines
295 B
Bash
Executable file

#!/usr/bin/env bash
if hash powershell 2>/dev/null; then
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 macos.md to build PowerShell!'
fi