Browse Source

Make (un)installation little more verbose

Alois Mahdal 10 years ago
parent
commit
937988628a
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      setup/mk.sh

+ 3
- 3
setup/mk.sh View File

58
 }
58
 }
59
 
59
 
60
 install() {
60
 install() {
61
-    mkdir -p $bindir
61
+    mkdir -vp $bindir
62
     list_of_bins | xargs cp -vrt $bindir
62
     list_of_bins | xargs cp -vrt $bindir
63
-    list_of_installed_bins | xargs chmod 755
63
+    list_of_installed_bins | xargs chmod -v 755
64
     test -f .autoclean && clean || :
64
     test -f .autoclean && clean || :
65
 }
65
 }
66
 
66
 
95
 }
95
 }
96
 
96
 
97
 uninstall() {
97
 uninstall() {
98
-    list_of_installed_bins | xargs rm -f
98
+    list_of_installed_bins | xargs rm -vf
99
 }
99
 }
100
 
100
 
101
 case $1 in
101
 case $1 in