We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 248dc0b + dd7595b commit 52f2f43Copy full SHA for 52f2f43
src/com/magento/idea/magento2plugin/util/magento/MagentoVersionUtil.java
@@ -80,6 +80,9 @@ private static String getFilePath(final String magentoPath) {
80
* the value {@code false} if the argument version1 is less than to version2.
81
*/
82
public static boolean compare(final String version1, final String version2) {
83
+ if (version1.equals(DEFAULT_VERSION)) {
84
+ return true;
85
+ }
86
if (version1.equals(version2)) {
87
return true;
88
}
0 commit comments