Skip to content
Snippets Groups Projects
Unverified Commit 9f4833a7 authored by Alex Clemmer's avatar Alex Clemmer Committed by GitHub
Browse files

Merge pull request #271 from jessicayuen/conflicted-registries

Clarify error message for duplicate packages on install
parents aeadc53f 67a7faa0
No related branches found
No related tags found
No related merge requests found
......@@ -151,7 +151,7 @@ func (m *manager) CacheDependency(registryName, libID, libName, libVersion strin
}
if _, ok := appSpec.Libraries[libName]; ok {
return nil, fmt.Errorf("Library '%s' already exists", libName)
return nil, fmt.Errorf("Package '%s' already exists. Use the --name flag to install this package with a unique identifier", libName)
}
// Retrieve registry manager for this specific registry.
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment