From e459a9c05250b800071388d97e860a8b18f35379 Mon Sep 17 00:00:00 2001 From: sue445 Date: Sat, 25 Nov 2023 18:08:13 +0900 Subject: [PATCH] Fixed error `/bin/sh: 1: export: ./bin/benchmarker: bad variable name` when running `make run` ``` isucon@ip-172-31-47-11:~/isucon12-final/benchmarker$ make run export ./bin/benchmarker --stage=prod --request-timeout=10s /bin/sh: 1: export: ./bin/benchmarker: bad variable name make: *** [Makefile:14: run] Error 2 ``` --- benchmarker/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarker/Makefile b/benchmarker/Makefile index 6715c71..039deb6 100644 --- a/benchmarker/Makefile +++ b/benchmarker/Makefile @@ -11,7 +11,7 @@ dev: build .PHONY: run run: build - export ./bin/benchmarker --stage=prod --request-timeout=10s + ./bin/benchmarker --stage=prod --request-timeout=10s bin/benchmarker: $(shell find . -name '*.go' -print) go build -buildvcs=false -o $@ .