diff options
Diffstat (limited to 'contrib/update_dependencies.sh')
-rwxr-xr-x | contrib/update_dependencies.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/contrib/update_dependencies.sh b/contrib/update_dependencies.sh new file mode 100755 index 00000000..5700a198 --- /dev/null +++ b/contrib/update_dependencies.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash + +grep 'git' go.mod | grep '\.com' | grep -v indirect | grep -v replace | cut -f 2 | cut -d ' ' -f 1 | while read line; do + go get -u "$line" + make vendor + git add . + git commit -m "update $line" +done |