Skip to content

Commit e7b417f

Browse files
authored
bug #146 Fixes tests/Application .gitignore (mmenozzi)
This PR was merged into the 1.3 branch. Discussion ---------- The `tests/Application/public/media/image/.gitignore` file has been probably added to the index with a force add (`git add -f`) because the parent `.gitignore` file (the one in `tests/Application`) doesn't properly de-ignore it. So when someone creates a new plugin from this skeleton the `tests/Application/public/media/image/.gitignore` file is not added to index and the build fails (the `tests/Application/public/media/image/` must exists) otherwise you'll get the error: ``` [Liip\ImagineBundle\Exception\InvalidArgumentException] Root image path not resolvable ... ``` Commits ------- 9c31fed Fixes tests/Application .gitignore
2 parents e5fc89e + 9c31fed commit e7b417f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/Application/.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
/public/bundles
66
/public/css
77
/public/js
8-
/public/media
8+
/public/media/*
9+
!/public/media/image/
10+
/public/media/image/*
911
!/public/media/image/.gitignore
1012

1113
/vendor

0 commit comments

Comments
 (0)