From 47f40c0b98069360314b76fb31b2d982464b57d1 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Wed, 26 Jan 2011 13:18:28 -0800 Subject: [PATCH] Recomend running camput --init in error message. --- lib/go/client/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/go/client/config.go b/lib/go/client/config.go index 295518175..1e11f65a3 100644 --- a/lib/go/client/config.go +++ b/lib/go/client/config.go @@ -103,7 +103,7 @@ func (c *Client) SignerPublicKeyBlobref() *blobref.BlobRef { key := "publicKeyBlobref" v, ok := config[key] if !ok { - log.Printf("No key %q in JSON configuration file %q", key, ConfigFilePath()) + log.Printf("No key %q in JSON configuration file %q; have you run \"camput --init\"?", key, ConfigFilePath()) return nil } s, ok := v.(string)