From 7aa88a4ff66aa0c256dc15e5e5a4ddda34ed0f46 Mon Sep 17 00:00:00 2001 From: Hugo Duncan Date: Wed, 24 Sep 2014 13:30:39 -0400 Subject: [PATCH] Fix quoting of TESTFLAGS in devenvironment.md Copy and pasting the example should now work, rather than TESTFLAGS being silently ignored. --- docs/sources/contributing/devenvironment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sources/contributing/devenvironment.md b/docs/sources/contributing/devenvironment.md index 41570e537..90ca11b88 100644 --- a/docs/sources/contributing/devenvironment.md +++ b/docs/sources/contributing/devenvironment.md @@ -115,7 +115,7 @@ something like this If $TESTFLAGS is set in the environment, it is passed as extra arguments to `go test`. You can use this to select certain tests to run, e.g., - $ TESTFLAGS=`-test.run \^TestBuild\$` make test + $ TESTFLAGS='-test.run \^TestBuild\$' make test If the output indicates "FAIL" and you see errors like this: