1
0
mirror of https://github.com/github/choosealicense.com synced 2024-12-22 21:00:10 +01:00

8 lines
204 B
Plaintext
Raw Normal View History

2014-09-17 11:38:11 -04:00
#! /usr/bin/env ruby
# downcases all licenses in a git-friendly way
2016-02-08 15:37:19 -05:00
Dir['_licenses/*'].each do |file|
2014-09-17 11:38:11 -04:00
system "git mv #{file} #{file.downcase}2"
system "git mv #{file.downcase}2 #{file.downcase}"
end