Merge pull request #16848 from thaJeztah/fix-broken-link-in-error

Fix broken link in error-message
Upstream-commit: f418f4864bd317755ecf66bd9acc406a7bddc2a9
Component: engine
This commit is contained in:
Phil Estes
2015-10-08 11:11:11 -04:00

View File

@ -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 {