]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - setup.sh
98c910064a03178666d3762a1cc336c9637e5a1f
[config/dotfiles.git] / setup.sh
1 #!/bin/sh
2
3 # Runs setup.sh in all configuration directories. Must be run in the main
4 # configuration directory.
5
6
7 # Projects which use git.
8 projects="browser lftp mail music os shell vcs vim"
9
10 # Run setup.sh in each project.
11 for project in $projects; do
12     [ -d "$project" ] && (echo "running setup.sh in '$project'";
13                           cd "$project"; ./setup.sh > /dev/null)
14 done