From 4830f488d5bcdbe73ab49fcedef0c6f686cbe704 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Thu, 8 Oct 2015 14:32:34 +0200 Subject: [PATCH] Fix broken link in error-message Signed-off-by: Sebastiaan van Stijn --- daemon/daemon_unix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/daemon_unix.go b/daemon/daemon_unix.go index 96ef4c04c8..d3887500e4 100644 --- a/daemon/daemon_unix.go +++ b/daemon/daemon_unix.go @@ -279,7 +279,7 @@ func configureSysInit(config *Config) (string, error) { localCopy := filepath.Join(config.Root, "init", fmt.Sprintf("dockerinit-%s", dockerversion.VERSION)) sysInitPath := utils.DockerInitPath(localCopy) if sysInitPath == "" { - return "", fmt.Errorf("Could not locate dockerinit: This usually means docker was built incorrectly. See https://docs.docker.com/contributing/devenvironment for official build instructions.") + return "", fmt.Errorf("Could not locate dockerinit: This usually means docker was built incorrectly. See https://docs.docker.com/project/set-up-dev-env/ for official build instructions.") } if sysInitPath != localCopy {