mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
23 lines
536 B
Ruby
Executable file
23 lines
536 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
|
|
require 'middleman-core/profiling'
|
|
if ARGV.include? '--profile'
|
|
Middleman::Profiling.profiler = Middleman::Profiling::RubyProfProfiler.new
|
|
end
|
|
Middleman::Profiling.start
|
|
|
|
require "middleman-core/load_paths"
|
|
Middleman.setup_load_paths
|
|
|
|
require "middleman-cli"
|
|
|
|
# Change directory to the root
|
|
Dir.chdir(ENV["MM_ROOT"]) if ENV["MM_ROOT"]
|
|
|
|
# Default command is server
|
|
if ARGV[0] != 'help' && (ARGV.length < 1 || ARGV.first.include?('-'))
|
|
ARGV.unshift('server')
|
|
end
|
|
|
|
# Start the CLI
|
|
Middleman::Cli::Base.start(ARGV)
|