Skip to content
Browse files

Incorrect Dir Path

When generating the ignore rules for Composer, an incorrect format is used. The vendor directory added is written `vendor/`, which causes other `vendors` directories to be ignored. The correct format to use is `/vendor/`, which would only ignore the root `vendor` directory.
  • Loading branch information...
1 parent 1451768 commit 5bb4e85357cb42ceff26233f67c27368d405cda0 @julien731 julien731 committed
Showing with 1 addition and 1 deletion.
  1. +1 −1 Composer.gitignore
View
2 Composer.gitignore
@@ -1,5 +1,5 @@
composer.phar
-vendor/
+/vendor/
# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file

0 comments on commit 5bb4e85

Please sign in to comment.
Something went wrong with that request. Please try again.