소스 검색

Soften wording on validation of licenses

Jordi Boggiano 13 년 전
부모
커밋
99e3cad0b5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Composer/Command/ValidateCommand.php

+ 1 - 1
src/Composer/Command/ValidateCommand.php

@@ -102,7 +102,7 @@ EOT
             $licenseValidator = new SpdxLicenseIdentifier();
             if (!$licenseValidator->validate($manifest['license'])) {
                 $warnings[] = sprintf(
-                    'License %s is not a valid SPDX license identifier, see http://www.spdx.org/licenses/',
+                    'License %s is not a valid SPDX license identifier, see http://www.spdx.org/licenses/ if you use an open license',
                     json_encode($manifest['license'])
                 );
             }