Skip to content

Commit

Permalink
refix
Browse files Browse the repository at this point in the history
  • Loading branch information
zunc committed Nov 6, 2013
1 parent 07ad0ec commit fdd1b49
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions make.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@

if RUBY_PLATFORM =~ /win/
system "ruby ./src/make_windows.rb #{ ARGV.join(' ') }"
elsif RUBY_PLATFORM =~ /linux/
system "ruby ./src/make_linux.rb #{ ARGV.join(' ') }"
if RUBY_PLATFORM =~ /x86_64/
system "ruby ./src/make_linux.rb #{ ARGV.join(' ') }"
else
system "ruby ./src/make_linux32.rb #{ ARGV.join(' ') }"
end
else
puts "unknown platform #{RUBY_PLATFORM}"
end

0 comments on commit fdd1b49

Please sign in to comment.