From 12dd71e6bfcdd416dba400c6cbd261b9e0e4cf18 Mon Sep 17 00:00:00 2001 From: astaxie Date: Sat, 15 Jun 2013 23:17:39 +0800 Subject: [PATCH] fix #210 --- ebook/01.2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ebook/01.2.md b/ebook/01.2.md index 2c97ed7b..40d24c50 100644 --- a/ebook/01.2.md +++ b/ebook/01.2.md @@ -22,7 +22,7 @@ GOPATH允许多个目录,当有多个目录时,请注意分隔符,多个 - src 存放源代码(比如:.go .c .h .s等) - pkg 编译后生成的文件(比如:.a) -- bin 编译后生成的可执行文件(为了方便,可以把此目录加入到 $PATH 变量中) +- bin 编译后生成的可执行文件(为了方便,可以把此目录加入到 $PATH 变量中,如果有多个gopath,那么使用`${GOPATH//://bin:}/bin`添加所有的bin目录) 以后我所有的例子都是以mygo作为我的gopath目录