Skip to content

Commit

Permalink
fix chdir support for jruby
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanley Stuart committed Jan 7, 2015
1 parent 4aeee53 commit 3bb1499
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/ember-cli/app.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ def initialize(name, options={})
def compile
prepare
silence_stream STDOUT do
system(env_hash, command, chdir: app_path, err: :out)
Dir.chdir app_path do
system(env_hash, command, err: :out)
end
end
end

Expand Down

0 comments on commit 3bb1499

Please sign in to comment.