Add shim for hyperlink bundle rename

This commit is contained in:
Kevin Sawicki
2013-10-22 12:04:39 -07:00
parent 40ab5938f2
commit c1fae082b4

View File

@@ -96,7 +96,10 @@ class PackageManager
#TODO Remove once all package specs have been updated
if match = /(.+)-tmbundle$/.exec(name)
@resolvePackagePath("language-#{match[1]}")
if name is 'hyperlink-helper-tmbundle'
@resolvePackagePath('language-hyperlink')
else
@resolvePackagePath("language-#{match[1]}")
isInternalPackage: (packagePath) ->
{engines} = Package.loadMetadata(packagePath, true)