From dcea53171e527f1b9d96bc5465a4d4a3575db68a Mon Sep 17 00:00:00 2001 From: Mike Linksvayer Date: Tue, 10 Jan 2017 17:23:54 -0800 Subject: [PATCH] Putdown one-use downcase script Seems to be one-time use https://github.com/github/choosealicense.com/pull/221 and doesn't need to stick around. Side note: I wondered what was going on with the double rename. I guess to make work with case insensitive file systems, which I had forgotten about. --- script/downcase | 7 ------- 1 file changed, 7 deletions(-) delete mode 100755 script/downcase diff --git a/script/downcase b/script/downcase deleted file mode 100755 index 2fb3147..0000000 --- a/script/downcase +++ /dev/null @@ -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