소스 검색

Clarify some more

Jordi Boggiano 12 년 전
부모
커밋
19bfd6c713
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/Composer/Config.php

+ 2 - 2
src/Composer/Config.php

@@ -180,7 +180,7 @@ class Config
                 if ($env = getenv('COMPOSER_DISCARD_CHANGES')) {
                     if (!in_array($env, array('stash', 'true', 'false', '1', '0'), true)) {
                         throw new \RuntimeException(
-                            "Invalid value for COMPOSER_DISCARD_CHANGES: {$this->config[$key]}, expected 1, 0, true, false or stash"
+                            "Invalid value for COMPOSER_DISCARD_CHANGES: {$env}. Expected 1, 0, true, false or stash"
                         );
                     }
                     if ('stash' === $env) {
@@ -193,7 +193,7 @@ class Config
 
                 if (!in_array($this->config[$key], array(true, false, 'stash'), true)) {
                     throw new \RuntimeException(
-                        "Invalid value for 'discard-changes': {$this->config[$key]}, expected true, false or stash"
+                        "Invalid value for 'discard-changes': {$this->config[$key]}. Expected true, false or stash"
                     );
                 }