mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-31 01:10:20 -06:00
add changelog
This commit is contained in:
15
changelog/unreleased/global-tidy.md
Normal file
15
changelog/unreleased/global-tidy.md
Normal 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
|
||||
Reference in New Issue
Block a user