mapnik/scripts/parse-commit-message.ps1

6 lines
130 B
PowerShell
Raw Permalink Normal View History

if($env:APPVEYOR_REPO_COMMIT_MESSAGE.ToLower().Contains($args[0].ToLower())) {
Write-Host '1';
} else {
Write-Host '0';
}