aboutsummaryrefslogblamecommitdiff
path: root/install/install-conf.sh
blob: f50cde7337b5655025a13435bfe29f15be140066 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                           
# Read extra targets from an optional ~/.dotfiles.conf file
if [ -e "$HOME"/.dotfiles.conf ] ; then
    while read -r line ; do
        case $line in
            '#'*|'') ;;
            *) set -- "$@" "$line" ;;
        esac
    done < "$HOME"/.dotfiles.conf
fi
make install "$@"