diff options
| author | Takashi Kokubun <takashikkbn@gmail.com> | 2024-05-28 17:00:12 -0700 |
|---|---|---|
| committer | Takashi Kokubun <takashikkbn@gmail.com> | 2024-05-28 17:01:13 -0700 |
| commit | d7ad60373988487ae746129dfd7f65df1dd13b86 (patch) | |
| tree | ee9c168daa0bbd0b5a31ae82fb9719727ca994cd | |
| parent | 9c81bbbbb738a5747eab5455292536369977ee92 (diff) | |
redmine-backporter.rb: Remove an unneeded space
from #backport_command_string
I don't want to leave unneeded spaces in the command history by
copy-pasting the entire line.
| -rwxr-xr-x | tool/redmine-backporter.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/redmine-backporter.rb b/tool/redmine-backporter.rb index 596ae464b0..d79281fc45 100755 --- a/tool/redmine-backporter.rb +++ b/tool/redmine-backporter.rb @@ -194,7 +194,7 @@ def backport_command_string end @changesets.define_singleton_method(:validated){true} end - " #{merger_path} --ticket=#{@issue} #{@changesets.sort.join(',')}" + "#{merger_path} --ticket=#{@issue} #{@changesets.sort.join(',')}" end def status_char(obj) |
