Update pkg/common/utils/utils.go

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Signed-off-by: Sahil Bansal <bansalsahil315@gmail.com>
This commit is contained in:
Sahil Bansal
2025-04-28 20:48:07 +05:30
committed by GitHub
co-authored by Copilot
parent 6ae594a896
commit 5ea85fa1f3
+1 -1
View File
@@ -31,5 +31,5 @@ func ParsePackageInfo(input string) (packageName, version string, err error) {
return packageName, "", nil
}
return "", "", fmt.Errorf("invalid format: expected 'package' OR 'package@version' , got '%s'", input)
return "", "", fmt.Errorf("invalid format: expected 'package' OR 'package@version', got '%s'", input)
}