rebuild-child-themes.sh 334 B

12345678910
  1. #!/bin/bash
  2. declare -a ChildThemes=("alves" "balasana" "barnsbury" "brompton" "coutoire" "dalston" "exford" "hever" "leven" "mayland" "maywood" "morden" "redhill" "rivington" "rockfield" "shawburn" "stow" "stratford" )
  3. for child in ${ChildThemes[@]}; do
  4. cd '../'${child}
  5. echo 'Rebulding '${child}
  6. npm install
  7. npm run build
  8. done