Skip to content

Commit

Permalink
use valid SPDX identifier for BSD license
Browse files Browse the repository at this point in the history
  • Loading branch information
jvolkening committed Feb 8, 2024
1 parent 36e9877 commit aeeeddc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Software/License/BSD.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ sub name { 'The (three-clause) BSD License' }
sub url { 'http://opensource.org/licenses/BSD-3-Clause' }
sub meta_name { 'bsd' }
sub meta2_name { 'bsd' }
sub spdx_expression { 'BSD' }
sub spdx_expression { 'BSD-3-Clause' }

1;
__DATA__
Expand Down
2 changes: 1 addition & 1 deletion t/spdx-expression.t
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ is (scalar(Software::License::Artistic_2_0->spdx_expression()),
);

is (scalar(Software::License::BSD->spdx_expression()),
'BSD',
'BSD-3-Clause',
"BSD->spdx_expression() is OK."
);

Expand Down

0 comments on commit aeeeddc

Please sign in to comment.