Files
mozo-backend/bin/test_prepare
T
2015-09-17 17:46:33 +02:00

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