add changelog

This commit is contained in:
A.Unger
2020-11-12 11:34:19 +01:00
parent f2546c6191
commit 411ad41f2b

View File

@@ -0,0 +1,15 @@
Enhancement: Tidy dependencies
Methodology:
```
go-modules() {
find . \( -name vendor -o -name '[._].*' -o -name node_modules \) -prune -o -name go.mod -print | sed 's:/go.mod$::'
}
```
```
for m in $(go-modules); do (cd $m && go mod tidy); done
```
https://github.com/owncloud/ocis/pull/845