Skip to content

Commit 32abcd4

Browse files
authored
Merge pull request #63 from intersystems-community/stage
Stage
2 parents 2a0747b + 47bb7dc commit 32abcd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cls/ZPM/Package.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ ClassMethod UpdatePackage(jo As %DynamicObject) As %Status
428428
Set meta = ..GetModuleMeta(url)
429429
If (meta.version = "") { $$$ThrowStatus($$$ERROR(5001, "Invalid package version")) }
430430
If (meta.name = "") { $$$ThrowStatus($$$ERROR(5001, "Package name is empty")) }
431-
Set tName = meta.name
431+
Set tName = $$$lcase(meta.name)
432432
Set id = ""
433433

434434
&sql(DELETE FROM ZPM.Package WHERE Name = :tName AND UpLink IS NOT NULL) // delete all "proxy" packages

0 commit comments

Comments
 (0)