Redmine 4.1.1

This commit is contained in:
Manuel Cillero 2020-11-22 21:20:06 +01:00
parent 33e7b881a5
commit 3d976f1b3b
1593 changed files with 36180 additions and 19489 deletions

View file

@ -1,4 +1,5 @@
#!/usr/bin/env ruby
# frozen_string_literal: false
require 'optparse'
require 'find'
@ -6,7 +7,7 @@ require 'etc'
require 'rubygems'
Version = "1.5"
SUPPORTED_SCM = %w( Subversion Darcs Mercurial Bazaar Git Filesystem )
SUPPORTED_SCM = %w( Subversion Mercurial Bazaar Git Filesystem )
$verbose = 0
$quiet = false
@ -53,7 +54,7 @@ end
def read_key_from_file(filename)
begin
$api_key = File.read(filename).strip
rescue Exception => e
rescue => e
$stderr.puts "Unable to read the key from #{filename}: #{e.message}"
exit 1
end