Skip to content

Instantly share code, notes, and snippets.

@shosanna
Created August 5, 2017 16:09
Show Gist options
  • Save shosanna/62d3b6beede68fa20c70c2bae1714efc to your computer and use it in GitHub Desktop.
Save shosanna/62d3b6beede68fa20c70c2bae1714efc to your computer and use it in GitHub Desktop.
#!/bin/bash
for file in $(find . -iname setup | grep dev); do
dev_dir=$(dirname $file)
dir=$(dirname $dev_dir)
echo -e "\n\n\nRunning setup in $dir"
(cd $dir; ./dev/setup)
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment