IDEADEV-41034: Artifact: manifest.mf name recognition is case-sensitive

This commit is contained in:
nik
2009-11-09 09:48:41 +03:00
parent 6bfb417b71
commit 0be3ef1234
@@ -211,7 +211,7 @@ public abstract class ElementWithManifestPropertiesPanel<E extends CompositeElem
public void reset() {
myTitleLabel.setText("'" + myElement.getName() + "' manifest properties:");
myManifestNotFoundLabel.setText("Manifest.mf file not found in '" + myElement.getName() + "'");
myManifestNotFoundLabel.setText("META-INF/MANIFEST.MF file not found in '" + myElement.getName() + "'");
final VirtualFile file = ManifestFileUtil.findManifestFile(myElement, myContext, myContext.getArtifactType());
String path = file != null ? file.getPath() : null;
if (!Comparing.equal(path, myManifestFileConfiguration.getManifestFilePath())) {