Skip to content

Commit 21de645

Browse files
author
Vitaliy
authored
Merge pull request #568 from Iamwade/back-port-fixed-directory-creation-error
Fixed the bug of creating a subdirectory
2 parents c60e5db + a3da93d commit 21de645

File tree

7 files changed

+7
-4
lines changed

7 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).
66

77
## 3.2.1
88

9+
### Fixed
10+
11+
- Directory validator
12+
- Entity data mapper file template
13+
914
## 3.2.0
1015

1116
### Added

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55

66
plugins {
7-
id 'org.jetbrains.intellij' version '0.6.5'
7+
id 'org.jetbrains.intellij' version '0.7.2'
88
id 'checkstyle'
99
id 'pmd'
1010
id 'org.jetbrains.changelog' version '0.6.2'

gradle-tasks/staticChecks.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ checkstyle {
1919
pmd {
2020
toolVersion = "6.21.0"
2121
consoleOutput = true
22-
rulePriority = 5
2322
ruleSets = [
2423
rootProject.file("gradle-tasks/pmd/ruleset.xml")
2524
]

resources/META-INF/pluginIcon_dark.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/com/magento/idea/magento2plugin/actions/generation/dialog/validator/rule/PhpDirectoryRule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class PhpDirectoryRule implements ValidationRule {
1313

1414
@Override
1515
public boolean check(final String value) {
16-
return value.matches(RegExUtil.Magento.PHP_CLASS);
16+
return value.matches(RegExUtil.DIRECTORY);
1717
}
1818

1919
public static ValidationRule getInstance() {

0 commit comments

Comments
 (0)