PowerShell/build.sh
Andrew Schwartzmeyer bc7030dae0 Deprecate build.sh script
If `powershell` is installed, run `Start-PSBuild` to ensure DWIM. Else,
direct user to Linux / OS X build documentation.

Resolves #767.
2016-04-07 14:19:35 -07:00

9 lines
241 B
Bash
Executable file

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