From c1d1482393b6aa64074ecdaa748397a9aa7d12e7 Mon Sep 17 00:00:00 2001 From: Beau Simensen Date: Thu, 19 Jan 2012 20:57:57 -0800 Subject: [PATCH] This was nowhere near accurate before. Must have been thinking about the wrong then when I wrote this. --- doc/faqs/vendor-bins.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/faqs/vendor-bins.md b/doc/faqs/vendor-bins.md index 990e2b73d..1c8f6a85d 100644 --- a/doc/faqs/vendor-bins.md +++ b/doc/faqs/vendor-bins.md @@ -92,15 +92,15 @@ should **not** list the `.bat` file as a bin as it is not needed. Yes, there are two ways that an alternate vendor bin location can be specified. - * Setting the `vendor-dir` configuration setting in `composer.json` - * Setting the environment variable `COMPOSER_VENDOR_DIR` + * Setting the `bin-dir` configuration setting in `composer.json` + * Setting the environment variable `COMPOSER_BIN_DIR` An example of the former looks like this: ```json { "config": { - "vendor-dir": "scripts" + "bin-dir": "scripts" } } ```