12 lines
154 B
Bash
Executable File
12 lines
154 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -uo pipefail
|
|
|
|
grep "replace.*github.com/pingcap/parser" go.mod
|
|
grep_ret=$?
|
|
|
|
if [ $grep_ret -eq 0 ];then
|
|
exit 1
|
|
else
|
|
exit 0
|
|
fi
|