You've already forked adareducer
mirror of
https://github.com/AdaCore/adareducer.git
synced 2026-02-12 13:10:07 -08:00
9 lines
117 B
PowerShell
9 lines
117 B
PowerShell
|
|
$result = select-string -Path "hello.adb" -Pattern 'pouet'
|
|
|
|
if ($result -eq $null) {
|
|
exit 1
|
|
} else {
|
|
exit 0
|
|
}
|