From cf5d3267bd036057da16605477aa868602da16dd Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Fri, 6 Oct 2023 12:41:10 +0200 Subject: [PATCH] extract script in another pr --- scripts/go-mod-tidy-all.sh | 9 --------- 1 file changed, 9 deletions(-) delete mode 100755 scripts/go-mod-tidy-all.sh diff --git a/scripts/go-mod-tidy-all.sh b/scripts/go-mod-tidy-all.sh deleted file mode 100755 index 72b2b9d0e2f..00000000000 --- a/scripts/go-mod-tidy-all.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env bash - -set -euo pipefail - -for modfile in $(find . -name go.mod); do - echo "Updating $modfile" - DIR=$(dirname $modfile) - (cd $DIR; go mod tidy) -done \ No newline at end of file