From 79834cc131dec047cc1c42fb62b81074afede8f7 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Sun, 18 Oct 2020 09:53:04 +0100 Subject: [PATCH] add build string method --- build/build.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/build.go b/build/build.go index 02f1db48..7a1c9faf 100644 --- a/build/build.go +++ b/build/build.go @@ -7,6 +7,8 @@ type Build interface { Package(*Source) (*Package, error) // Remove removes the package Remove(*Package) error + // Implementation of build + String() string } // Source is the source of a build