diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/clean | 2 | ||||
-rwxr-xr-x | bin/install | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ #! /bin/bash dotdir=/home/urbain/dotfiles -for file in `ls -A --ignore="install.sh" --ignore="README.md" --ignore=".git*"`; do +for file in `ls -A --ignore="Makefile" --ignore="README.md" --ignore=".git*"`; do if [[ -f $file/Makefile ]]; then cd $file && make clean && cd $dotdir else diff --git a/bin/install b/bin/install index eb69236..438c5b9 100755 --- a/bin/install +++ b/bin/install @@ -1,6 +1,6 @@ #! /bin/bash dotdir=/home/urbain/dotfiles -for file in `ls -A --ignore="install.sh" --ignore="README.md" --ignore=".git*"`; do +for file in `ls -A --ignore="Makefile" --ignore="README.md" --ignore=".git*"`; do if [[ -f $file/Makefile ]]; then cd $file && make && cd $dotdir else |