Browse Source

Omit error messages

master
Maxim Likhachev 6 years ago
parent
commit
b3e85f1675
  1. 2
      Makefile

2
Makefile

@ -9,7 +9,7 @@ rmdir:
rmdir $(path) 2>&-; : rmdir $(path) 2>&-; :
install: mkdir install: mkdir
gfind . -maxdepth 1 -type f -executable -exec basename {} \; | while read -r line; do ln -s $$(realpath $$line) $(path)/$$line; done gfind . -maxdepth 1 -type f -executable -exec basename {} \; | while read -r line; do ln -s $$(realpath $$line) $(path)/$$line 2>&-; done; true
rmlinks: rmlinks:
gfind . -maxdepth 1 -type f -executable -exec basename {} \; | xargs -IF rm -fv $(path)/F gfind . -maxdepth 1 -type f -executable -exec basename {} \; | xargs -IF rm -fv $(path)/F

Loading…
Cancel
Save