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:
commit
dacdbfb8bb
7
script/downcase
Executable file
7
script/downcase
Executable 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
|
Loading…
Reference in New Issue
Block a user