Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'internal/jail/mount_not_supported.go')
-rw-r--r--internal/jail/mount_not_supported.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/jail/mount_not_supported.go b/internal/jail/mount_not_supported.go
index 0ab0f5f0..b4d3e348 100644
--- a/internal/jail/mount_not_supported.go
+++ b/internal/jail/mount_not_supported.go
@@ -8,12 +8,12 @@ import (
)
func (j *Jail) Unshare() error {
- return fmt.Errorf("Unshare not supported on %s", runtime.GOOS)
+ return fmt.Errorf("unshare not supported on %s", runtime.GOOS)
}
func (j *Jail) notSupported() error {
if len(j.bindMounts) > 0 {
- return fmt.Errorf("Bind mount not supported on %s", runtime.GOOS)
+ return fmt.Errorf("bind mount not supported on %s", runtime.GOOS)
}
return nil