From 97ba0fa175b9ae1c056b912f785d5a31fb7a9b81 Mon Sep 17 00:00:00 2001 From: yamasaki Date: Fri, 29 Sep 2023 01:46:53 +0900 Subject: [PATCH] feat : go mod tidy shell --- testserver/Makefile | 3 +++ testserver/script/gomod.sh | 11 +++++++++++ 2 files changed, 14 insertions(+) create mode 100644 testserver/script/gomod.sh diff --git a/testserver/Makefile b/testserver/Makefile index e69de29..b8b5b82 100644 --- a/testserver/Makefile +++ b/testserver/Makefile @@ -0,0 +1,3 @@ +.PHONY: tidy +tidy: + ./script/gomod.sh \ No newline at end of file diff --git a/testserver/script/gomod.sh b/testserver/script/gomod.sh new file mode 100644 index 0000000..eb769f6 --- /dev/null +++ b/testserver/script/gomod.sh @@ -0,0 +1,11 @@ +cd localhost/8081 +go mod tidy +cd ../../ +cd localhost/8082 +go mod tidy +cd ../../ +cd localhost/8083 +go mod tidy +cd ../../ +cd localhost/8084 +go mod tidy \ No newline at end of file