bin/ripple in ripple-cli-2.1.0.125 vs bin/ripple in ripple-cli-2.1.0.127
- old
+ new
@@ -3,7 +3,13 @@
# This file was generated by RubyGems.
#
# The application 'fubu' is installed as part of a gem, and
# this file is here to facilitate running it.
#
-result = system(File.dirname(__FILE__) + "/ripple.exe " + ARGV.join(' '))
+cmd = ""
+if(!RUBY_PLATFORM.match("linux|darwin").nil?)
+ cmd << "mono "
+end
+cmd << File.dirname(__FILE__) + "/ripple.exe " + ARGV.join(' ')
+
+result = system(cmd)
exit 1 unless result
\ No newline at end of file