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,9 +58,9 @@ dist() {
58 58
 }
59 59
 
60 60
 install() {
61
-    mkdir -p $bindir
61
+    mkdir -vp $bindir
62 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 64
     test -f .autoclean && clean || :
65 65
 }
66 66
 
@@ -95,7 +95,7 @@ run_test() {
95 95
 }
96 96
 
97 97
 uninstall() {
98
-    list_of_installed_bins | xargs rm -f
98
+    list_of_installed_bins | xargs rm -vf
99 99
 }
100 100
 
101 101
 case $1 in