aboutsummaryrefslogtreecommitdiff
path: root/script/install
blob: 1887fc2ca494f9d139bb7fee8aa8fa3f8f2c6bc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env bash
#
# Run all dotfiles installers.

set -e

cd "$(dirname $0)"/..

# find the installers and run them iteratively
find . -name install.sh | while read installer ; do sh -c "${installer}" ; done