From 99e3cad0b54410d68e6b3129724b9b11318a869c Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Mon, 4 Jun 2012 11:31:43 +0200 Subject: [PATCH] Soften wording on validation of licenses --- src/Composer/Command/ValidateCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Command/ValidateCommand.php b/src/Composer/Command/ValidateCommand.php index dc2693564..e2a69abd5 100644 --- a/src/Composer/Command/ValidateCommand.php +++ b/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']) ); }