# File 'lib/redmine/utils.rb', line 70defshell_quote(str)ifRedmine::Platform.mswin?'"'+str.gsub(/"/,'\\"')+'"'else"'"+str.gsub(/'/,"'\"'\"'")+"'"endend
.shell_quote_command(command) ⇒ Object
Since:
3.4.0
78
79
80
81
82
83
84
# File 'lib/redmine/utils.rb', line 78defshell_quote_command(command)ifRedmine::Platform.mswin?&&RUBY_PLATFORM=='java'commandelseshell_quote(command)endend