9 lines
352 B
Ruby
Executable File
9 lines
352 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
require 'pathname'
|
|
require 'active_support/all'
|
|
mozo_user_path = ENV['MOZO_USER_PATH'] || Pathname.new(File.expand_path('../../../mozo-user', __FILE__))
|
|
Dir.chdir mozo_user_path do
|
|
`ember build --output-path=../mozo/public/user/ --environment=testexport` # not production, because then the production servers will be queried
|
|
end
|
|
|