Skip to content

Instantly share code, notes, and snippets.

@ashic
Created July 24, 2013 07:28
Show Gist options
  • Save ashic/6068663 to your computer and use it in GitHub Desktop.
Save ashic/6068663 to your computer and use it in GitHub Desktop.
Powershell build step.
Script:Source.
Script source: & {$host.UI.RawUI.BufferSize = new-object System.Management.Automation.Host.Size(512, 50); .\tools\psake\psake .\build\build.ps1 ci;
if ($psake.build_success -eq $false) { exit 1 } else { exit 0 }}
[replace .\tools\psake\psake .\build\build.ps1 ci with whatever your command line build is.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment