From 6d20747cdc41b6738cef59ef94fac8a27aa284db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Fita?= <4925040+michalfita@users.noreply.github.com> Date: Tue, 26 Dec 2023 18:57:02 +0000 Subject: [PATCH] [Fixes #2] Scope creep: last rename fix --- builder/artifact.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builder/artifact.go b/builder/artifact.go index a80645f..8d3f4c6 100644 --- a/builder/artifact.go +++ b/builder/artifact.go @@ -2,14 +2,14 @@ package builder import "os" -// Artifact represents the image produced by packer-builder-arm +// Artifact represents the image produced by packer-plugin-cross type Artifact struct { image string } // BuilderId returns builder ID func (a *Artifact) BuilderId() string { //nolint:all - return "builder-arm" + return "plugin-cross" } // Files returns list of images (in that case just one) built