fixed a syntax error in var-01.hcl

This commit is contained in:
2022-05-06 00:17:26 +00:00
parent c80dd5820d
commit 3c5dd6de57
2 changed files with 13 additions and 8 deletions

View File

@ -1,3 +1,3 @@
#!/bin/sh
$@ | grep -E ^ERROR: && exit 1
$@ 2>&1 | grep -Eq ^ERROR: && exit 1
exit 0