Skip to content

Commit

Permalink
Run npm install after checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
chancancode committed Aug 21, 2016
1 parent df570c7 commit 96c1da1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions bin/build_ember
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ each_experiment do |experiment|

in_glimmer do
run "git checkout #{experiment['glimmer']}"
run "npm install"
end

in_ember do
Expand All @@ -59,6 +60,7 @@ each_experiment do |experiment|
run "git checkout ."
run "git checkout #{experiment['ember']}"
run "git checkout -b #{experiment['name']}"
run "npm install"

puts
puts "Re-writing features.json..."
Expand Down Expand Up @@ -87,12 +89,14 @@ end

in_ember do
run "npm unlink glimmer-engine"
run "npm install"
end

in_glimmer do
run "git checkout ."
run "git checkout #{glimmer_previous_head}"
run "npm unlink"
run "npm install"
end

h1 "Done building Ember!", color: :green

0 comments on commit 96c1da1

Please sign in to comment.