3 Commits

Author SHA1 Message Date
Tom Limoncelli
d268a9e16a Release v1.20180615 2018-06-18 21:17:11 -04:00
Tom Limoncelli
ad2bc19b33 Merge branch 'master' of work-github.com:StackExchange/blackbox 2018-06-18 21:15:25 -04:00
Ben Limmer
1988a883a0 Restore make manual-install with warning. (#258) 2018-06-15 20:04:07 -04:00
2 changed files with 11 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
Release v1.20180618
* Restore `make manual-install` with warning. (#258)
Release v1.20180615 Release v1.20180615
* Standardize on .blackbox for config. Use keyrings/live for backwards compatibility. * Standardize on .blackbox for config. Use keyrings/live for backwards compatibility.

View File

@@ -59,6 +59,13 @@ symlinks-install:
@cd bin && for f in `find . -type f -iname "*" ! -iname "Makefile"`; do ln -fs `pwd`/$$f /usr/local/bin/$$f; done @cd bin && for f in `find . -type f -iname "*" ! -iname "Makefile"`; do ln -fs `pwd`/$$f /usr/local/bin/$$f; done
@echo 'Done.' @echo 'Done.'
manual-install:
@echo '***************************************************************'
@echo '* DEPRECATED *'
@echo '* `make manual-install` is now called `make symlinks-install` *'
@echo '***************************************************************'
$(MAKE) symlinks-install
copy-install: copy-install:
@echo 'Copying files from ./bin to /usr/local/bin' @echo 'Copying files from ./bin to /usr/local/bin'
@cd bin && for f in `find . -type f -iname "*" ! -iname "Makefile"`; do cp `pwd`/$$f /usr/local/bin/$$f; done @cd bin && for f in `find . -type f -iname "*" ! -iname "Makefile"`; do cp `pwd`/$$f /usr/local/bin/$$f; done