mirror of
https://github.com/github/choosealicense.com
synced 2024-11-05 19:28:50 +01:00
8 lines
204 B
Plaintext
8 lines
204 B
Plaintext
|
#! /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
|