From b847b6a613a2dcce53dc57bad7a51d5b92774912 Mon Sep 17 00:00:00 2001 From: Jordan Barrett Date: Tue, 7 Nov 2023 17:08:28 +0200 Subject: [PATCH] Add empty file to provider/all package This allows you to compile Juju with just BUILD_TAGS='minimal' (no providers). --- provider/all/none.go | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 provider/all/none.go diff --git a/provider/all/none.go b/provider/all/none.go new file mode 100644 index 00000000000..cf3e3fe713c --- /dev/null +++ b/provider/all/none.go @@ -0,0 +1,8 @@ +// Copyright 2023 Canonical Ltd. +// Licensed under the AGPLv3, see LICENCE file for details. + +package all + +// This file is here so that you can compile Juju with no providers +// (i.e. BUILD_TAGS='minimal'). Otherwise, Go will complain that the build +// constraints exclude all Go files in this package.