PowerShell/build.sh

9 lines
293 B
Bash
Raw Normal View History

#!/usr/bin/env bash
if hash powershell 2>/dev/null; then
2016-05-18 23:24:08 +02:00
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