浏览代码

doc: don't use ETCDCTL_API=3 in dl_build

In the spirit of keeping newb instructions simple, do not specify
ETCDCTL_API=3 since it is redundant.

Note: v3 has been the default since 25bc65794.
Mark McLoughlin 7 年之前
父节点
当前提交
b398947cf9
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Documentation/dl_build.md

+ 2 - 2
Documentation/dl_build.md

@@ -52,11 +52,11 @@ $ $GOPATH/bin/etcd
 Run the following:
 
 ```sh
-$ ETCDCTL_API=3 ./bin/etcdctl put foo bar
+$ ./bin/etcdctl put foo bar
 OK
 ```
 
-(or `ETCDCTL_API=3 $GOPATH/bin/etcdctl put foo bar` if etcdctl was installed with `go get`)
+(or `$GOPATH/bin/etcdctl put foo bar` if etcdctl was installed with `go get`)
 
 If OK is printed, then etcd is working!