From e68b9d00a6e05b3a941f63ffb696f91e554ac5ec Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 18 Oct 2024 20:33:49 +0200 Subject: Adding upstream version 9.0.3. Signed-off-by: Daniel Baumann --- contrib/update_dependencies.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 contrib/update_dependencies.sh (limited to 'contrib/update_dependencies.sh') diff --git a/contrib/update_dependencies.sh b/contrib/update_dependencies.sh new file mode 100755 index 0000000..5700a19 --- /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 -- cgit v1.2.3