File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change
1
+ Sat May 21 04:54:20 2011 Akinori MUSHA <knu@iDaemons.org>
2
+
3
+ * lib/fileutils.rb (FileUtils#touch): Fix corrupted output.
4
+ ref [ruby-dev:43401]
5
+
1
6
Sat May 21 02:10:09 2011 Yukihiro Matsumoto <matz@ruby-lang.org>
2
7
3
8
* re.h (RMATCH_REGS): parenthesize cast expression. suggested
Original file line number Diff line number Diff line change @@ -1027,7 +1027,7 @@ def touch(list, options = {})
1027
1027
created = nocreate = options [ :nocreate ]
1028
1028
t = options [ :mtime ]
1029
1029
if options [ :verbose ]
1030
- fu_output_message "touch #{ nocreate ? ' -c ' : '' } #{ t ? t . strftime ( ' -t %Y%m%d%H%M.%S' ) : '' } #{ list . join ' ' } "
1030
+ fu_output_message "touch #{ nocreate ? '-c ' : '' } #{ t ? t . strftime ( '-t %Y%m%d%H%M.%S ' ) : '' } #{ list . join ' ' } "
1031
1031
end
1032
1032
return if options [ :noop ]
1033
1033
list . each do |path |
Original file line number Diff line number Diff line change 2
2
#define RUBY_RELEASE_DATE "2011-05-21"
3
3
#define RUBY_VERSION_CODE 187
4
4
#define RUBY_RELEASE_CODE 20110521
5
- #define RUBY_PATCHLEVEL 342
5
+ #define RUBY_PATCHLEVEL 343
6
6
7
7
#define RUBY_VERSION_MAJOR 1
8
8
#define RUBY_VERSION_MINOR 8
You can’t perform that action at this time.
0 commit comments