From fbfd9c4b8410319c1c1208a208a2c4ff6e624166 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Tue, 12 Aug 2014 11:53:16 +0200 Subject: [PATCH] fixed install script --- install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 929666f..ac15ea1 100755 --- a/install.sh +++ b/install.sh @@ -1,7 +1,9 @@ #!/bin/bash shopt -s extglob +shopt -s dotglob -for file in !(.git|install.sh|*~|.|..); do +for file in !(.git|*.sh|*~|.|..); do + echo "install $file ..." cp -r $file ~ done