From d926b9fd803fd5742f35b0693b3743f3d28c875d Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sun, 29 Apr 2018 15:42:05 +0200 Subject: [PATCH] Add profile build flag --- cmd/restic/global_debug.go | 2 +- cmd/restic/global_release.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/restic/global_debug.go b/cmd/restic/global_debug.go index bc6a51993..6f04d047b 100644 --- a/cmd/restic/global_debug.go +++ b/cmd/restic/global_debug.go @@ -1,4 +1,4 @@ -// +build debug +// +build debug profile package main diff --git a/cmd/restic/global_release.go b/cmd/restic/global_release.go index 04c7cba31..f17d99639 100644 --- a/cmd/restic/global_release.go +++ b/cmd/restic/global_release.go @@ -1,4 +1,4 @@ -// +build !debug +// +build !debug,!profile package main