From c36072713a85bf12edbae513f8bdfc3ea2acd979 Mon Sep 17 00:00:00 2001 From: Rolf Neugebauer Date: Fri, 29 Jul 2016 16:28:34 +0100 Subject: [PATCH] diagnostics: fix diagnostics for local/desktop editions Signed-off-by: Rolf Neugebauer --- alpine/packages/diagnostics/capture.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/alpine/packages/diagnostics/capture.go b/alpine/packages/diagnostics/capture.go index 1c15b0419..515fb28b2 100644 --- a/alpine/packages/diagnostics/capture.go +++ b/alpine/packages/diagnostics/capture.go @@ -54,6 +54,9 @@ var ( ) func init() { + for _, c := range commonCmdCaptures { + localCaptures = append(localCaptures, c) + } for _, c := range localCmdCaptures { localCaptures = append(localCaptures, c) }