aboutsummaryrefslogtreecommitdiff
path: root/gopls/internal/hooks/gen-licenses.sh
diff options
context:
space:
mode:
Diffstat (limited to 'gopls/internal/hooks/gen-licenses.sh')
-rwxr-xr-xgopls/internal/hooks/gen-licenses.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/gopls/internal/hooks/gen-licenses.sh b/gopls/internal/hooks/gen-licenses.sh
index 7d6bab79f..c35c91260 100755
--- a/gopls/internal/hooks/gen-licenses.sh
+++ b/gopls/internal/hooks/gen-licenses.sh
@@ -27,7 +27,7 @@ mods=$(go list -deps -f '{{with .Module}}{{.Path}}{{end}}' golang.org/x/tools/go
for mod in $mods; do
# Find the license file, either LICENSE or COPYING, and add it to the result.
dir=$(go list -m -f {{.Dir}} $mod)
- license=$(ls -1 $dir | egrep -i '^(LICENSE|COPYING)$')
+ license=$(ls -1 $dir | grep -E -i '^(LICENSE|COPYING)$')
echo "-- $mod $license --" >> $tempfile
echo >> $tempfile
sed 's/^-- / &/' $dir/$license >> $tempfile