소스 검색

Make (un)installation little more verbose

Alois Mahdal 10 년 전
부모
커밋
937988628a
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3
    3
      setup/mk.sh

+ 3
- 3
setup/mk.sh 파일 보기

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