ソースを参照

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'])
                 );
             }