diff options
author | Nobuyoshi Nakada <[email protected]> | 2020-03-08 17:38:37 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2020-03-08 17:38:37 +0900 |
commit | 2b7409a2f2aaab1368c57e1cd03c12b2b8972fa9 () | |
tree | 1d3d2d2c5c91cd732fc093f0245acf6d67bf718c /tool/lib/vcs.rb | |
parent | 53efe6328057ccb604a81541080aab3b3e1268d7 (diff) |
Specify explicit separator not to be affected by $;
-rw-r--r-- | tool/lib/vcs.rb | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -728,7 +728,7 @@ class VCS commits = cmd_read([COMMAND, "log", "--reverse", "--format=%H %ae %ce", "#{com}..@"], "rb").split("\n") commits.each_with_index do |l, i| - r, a, c = l.split dcommit = [COMMAND, "svn", "dcommit"] dcommit.insert(-2, "-n") if dryrun dcommit << "--add-author-from" unless a == c |