fixed install script

This commit is contained in:
Steffen Vogel 2014-08-12 11:53:16 +02:00
parent 912add95d2
commit fbfd9c4b84

View file

@ -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