リポジトリのトップなどで以下のコマンドを実行する。
for v in `find . -name "go.mod" | xargs -I {} dirname {}`
do
echo $v
cd $v
go mod tidy
cd - >> /dev/null
done
Go to list of users who liked
More than 3 years have passed since last update.
リポジトリのトップなどで以下のコマンドを実行する。
for v in `find . -name "go.mod" | xargs -I {} dirname {}`
do
echo $v
cd $v
go mod tidy
cd - >> /dev/null
done
Register as a new user and use Qiita more conveniently
Go to list of users who liked