1
0
mirror of https://github.com/github/choosealicense.com synced 2024-06-29 07:03:02 +02:00

Merge pull request #474 from github/putdown-old-script

Putdown one-use downcase script
This commit is contained in:
Mike Linksvayer 2017-01-11 08:51:25 -08:00 committed by GitHub
commit f982e7c419

View File

@ -1,7 +0,0 @@
#! /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