From 9ecf003a3310e825ef3cfc23da66bff3016506fd Mon Sep 17 00:00:00 2001 From: Nathan LeClaire Date: Wed, 20 Jul 2016 13:48:21 -0700 Subject: [PATCH] Fix error in diagnostic server init code Signed-off-by: Nathan LeClaire --- alpine/packages/diagnostics/capture.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alpine/packages/diagnostics/capture.go b/alpine/packages/diagnostics/capture.go index b1dbb4fb5..1c15b0419 100644 --- a/alpine/packages/diagnostics/capture.go +++ b/alpine/packages/diagnostics/capture.go @@ -55,7 +55,7 @@ var ( func init() { for _, c := range localCmdCaptures { - localCmdCaptures = append(localCmdCaptures, c) + localCaptures = append(localCaptures, c) } }