File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to `php-db-migration-validator` will be documented in this f
4
4
5
5
## [ Unreleased]
6
6
7
+ ## [ 1.0.2] - 2022-01-16
8
+
9
+ ### Fixed
10
+
11
+ - Fixed missing trailing slash on end of directory path
12
+
7
13
## [ 1.0.1] - 2022-01-16
8
14
9
15
### Fixed
@@ -14,5 +20,6 @@ All notable changes to `php-db-migration-validator` will be documented in this f
14
20
15
21
- Initial release
16
22
17
- [ Unreleased ] : https://github.com/antonkomarev/php-db-migration-validator/compare/1.0.1...master
23
+ [ Unreleased ] : https://github.com/antonkomarev/php-db-migration-validator/compare/1.0.2...master
24
+ [ 1.0.2 ] : https://github.com/cybercog/laravel-love/compare/1.0.1...1.0.2
18
25
[ 1.0.1 ] : https://github.com/cybercog/laravel-love/compare/1.0.0...1.0.1
Original file line number Diff line number Diff line change @@ -48,7 +48,8 @@ private function listFilePaths(
48
48
string $ inputPath
49
49
): array {
50
50
if (is_dir ($ inputPath )) {
51
- $ inputPath .= '*.php ' ;
51
+ $ inputPath = rtrim ($ inputPath , '/ ' );
52
+ $ inputPath .= '/*.php ' ;
52
53
}
53
54
54
55
return glob ($ inputPath );
You can’t perform that action at this time.
0 commit comments