From 78b1d1f176ec1fe8b96308cdd3be0a020d488e08 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 31 Dec 2008 21:56:38 +0000 Subject: * tool/file2lastrev.rb: unset PWD. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21219 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ tool/file2lastrev.rb | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 414cc1d5a..f7f2c36ad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu Jan 1 06:56:28 2009 Nobuyoshi Nakada + + * tool/file2lastrev.rb: unset PWD. + Wed Dec 31 23:37:17 2008 Tanaka Akira * ext/socket/socket.c (sock_s_socketpair): yield if a block is given. diff --git a/tool/file2lastrev.rb b/tool/file2lastrev.rb index 01ac1bbce..37b27b2b8 100644 --- a/tool/file2lastrev.rb +++ b/tool/file2lastrev.rb @@ -1,5 +1,8 @@ #!/usr/bin/env ruby +ENV['LANG'] = ENV['LC_ALL'] = ENV['LC_MESSAGES'] = 'C' +ENV.delete('PWD') + require 'optparse' require 'pathname' @@ -14,7 +17,6 @@ def detect_vcs(path) end def get_revisions(path) - ENV['LANG'] = ENV['LC_ALL'] = ENV['LC_MESSAGES'] = 'C' vcs, path = detect_vcs(path) info = case vcs -- cgit