mirror of
https://github.com/hashicorp/packer.git
synced 2026-06-09 08:42:33 -04:00
* add hcp packer new nomenclature updates * Update docs with nomenclature changes * Update navigation bar links * Bump github.com/hashicorp/hcp-sdk-go from 0.81.0 to 0.82.0 * fix acceptance test template --------- Co-authored-by: sylviamoss <moss@hashicorp.com> Co-authored-by: Wilken Rivera <dev@wilkenrivera.com>
15 lines
402 B
Go
15 lines
402 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package registry
|
|
|
|
// ErrBuildAlreadyDone is the error returned by an HCP handler when a build cannot be started since it's already
|
|
// marked as DONE.
|
|
type ErrBuildAlreadyDone struct {
|
|
Message string
|
|
}
|
|
|
|
// Error returns the message for the ErrBuildAlreadyDone type
|
|
func (b ErrBuildAlreadyDone) Error() string {
|
|
return b.Message
|
|
}
|