Skip to content

Commit

Permalink
Make expected projects and components structure
Browse files Browse the repository at this point in the history
Lookout if you run this blindly!
  • Loading branch information
dfreedm committed Nov 13, 2013
1 parent b463d9b commit 9d9f5a0
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions bin/pull-all.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
#!/bin/bash

dir="${0%[/\\]*}"
bash $dir/pull-all-polymer.sh $@
bash $dir/pull-all-elements.sh $@
bash $dir/pull-all-projects.sh $@
! [ -d components ] && mkdir components
pushd components
bash ../$dir/pull-all-polymer.sh $@
bash ../$dir/pull-all-elements.sh $@
popd
! [ -d projects ] && mkdir projects
pushd projects
bash ../$dir/pull-all-projects.sh $@
popd

0 comments on commit 9d9f5a0

Please sign in to comment.