1
0
mirror of https://github.com/github/choosealicense.com synced 2024-11-05 11:18:50 +01:00

Merge pull request #221 from github/downcase

Downcase all license filenames
This commit is contained in:
Ben Balter 2014-09-17 11:38:20 -04:00
commit dacdbfb8bb
13 changed files with 7 additions and 0 deletions

7
script/downcase Executable file
View File

@ -0,0 +1,7 @@
#! /usr/bin/env ruby
# downcases all licenses in a git-friendly way
Dir["_licenses/*"].each do |file|
system "git mv #{file} #{file.downcase}2"
system "git mv #{file.downcase}2 #{file.downcase}"
end