Sign in
apache
/
kafka-merge-queue-sandbox
/
refs/heads/mumrah-patch-1
/
.
/
queue-check.sh
blob: ab368b6789ca7d5ccbeb2444a0926e125113c31a [
file
] [
log
] [
blame
]
#!/bin/bash
for
FILE
in
`git diff-index --name-status origin/main -- | cut -c3-`
;
do
if
grep
-
q
'FAILQUEUE'
"$FILE"
then
echo $FILE
' contains FAILQUEUE!'
exit
1
fi
done
exit