summaryrefslogtreecommitdiff
path: root/vendor/github.com/opencontainers/runtime-tools/specerror/config-windows.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/opencontainers/runtime-tools/specerror/config-windows.go')
-rw-r--r--vendor/github.com/opencontainers/runtime-tools/specerror/config-windows.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/vendor/github.com/opencontainers/runtime-tools/specerror/config-windows.go b/vendor/github.com/opencontainers/runtime-tools/specerror/config-windows.go
index 58765286b..c8134867d 100644
--- a/vendor/github.com/opencontainers/runtime-tools/specerror/config-windows.go
+++ b/vendor/github.com/opencontainers/runtime-tools/specerror/config-windows.go
@@ -9,11 +9,11 @@ import (
// define error codes
const (
// WindowsLayerFoldersRequired represents "`layerFolders` MUST contain at least one entry."
- WindowsLayerFoldersRequired = "`layerFolders` MUST contain at least one entry."
+ WindowsLayerFoldersRequired Code = 0xd001 + iota
// WindowsHyperVPresent represents "If present, the container MUST be run with Hyper-V isolation."
- WindowsHyperVPresent = "If present, the container MUST be run with Hyper-V isolation."
+ WindowsHyperVPresent
// WindowsHyperVOmit represents "If omitted, the container MUST be run as a Windows Server container."
- WindowsHyperVOmit = "If omitted, the container MUST be run as a Windows Server container."
+ WindowsHyperVOmit
)
var (