Skip to content

Commit c64a9fe

Browse files
committed
style: Ignore '.gopath'
1 parent 8b9f00e commit c64a9fe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/build-components-go.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -exuo pipefail
44
cd "$(dirname "$0")/.."
55

66

7-
find . -name 'go.mod' | while read modfile; do
7+
find . -name 'go.mod' -not -path "./.gopath/*" | while read modfile; do
88
dir=$(dirname "$modfile")
99
echo "Building $dir"
1010
(

0 commit comments

Comments
 (0)