Commit 9743e84d by Calen Pennington

Use launchy for opening browsers

parent 8e54991b
...@@ -601,15 +601,7 @@ task :showdocs, [:options] do |t, args| ...@@ -601,15 +601,7 @@ task :showdocs, [:options] do |t, args|
end end
Dir.chdir("#{path}/build/html") do Dir.chdir("#{path}/build/html") do
if RUBY_PLATFORM.include? 'darwin' # mac os Launchy.open('index.html')
sh('open index.html')
elsif RUBY_PLATFORM.include? 'linux' # make more ubuntu specific?
sh('sensible-browser index.html') # ubuntu
else
raise "\nUndefined how to run browser on your machine.
Please use 'rake builddocs' and then manually open
'mitx/#{path}/build/html/index.html."
end
end end
end end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment