From 76bb869f02f71c1405a9f8055d267f08c57a2152 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Mon, 10 Aug 2020 14:13:09 -0400 Subject: [PATCH] readme: switch example tag use to 'nautilus' Switch the example of how to compile go-ceph with tags to refer to nautilus in light of luminous and mimic being deprecated. Small wording/grammar changes to try and make the sentence clearer. Signed-off-by: John Mulligan --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 95e1e17..38378e2 100644 --- a/README.md +++ b/README.md @@ -23,13 +23,14 @@ only be available in recent versions, and others may be deprecated. In order to work with non-current versions of Ceph, it is required to pass build-tags to the `go` commandline. A tag with the named Ceph release will enable/disable certain features of the go-ceph packages, and prevent warnings or compile -problems. E.g. build against libcephfs/librados/librbd from Mimic, or run `go -test` against Limunous, use: +problems. For example, to ensure you select the library features that match +the "nautilus" release, use: ```sh -go build -tags mimic .... -go test -tags luminous .... +go build -tags nautilus .... +go test -tags nautilus .... ``` + ## Documentation Detailed documentation is available at