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