Skip to content

Commit

Permalink
execute scripts in cwd
Browse files Browse the repository at this point in the history
  • Loading branch information
tpo committed Jul 11, 2013
1 parent ff55e73 commit 18651f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ create_readme:
@echo >> README.md @echo >> README.md
@echo "Here's the --help for each shell script:" >> README.md @echo "Here's the --help for each shell script:" >> README.md
@echo >> README.md @echo >> README.md
@bash -c 'for i in `ls|grep -v README|grep -v Makefile`; do echo "### $$i"; echo; $$i --help; done >> README.md; true' @bash -c 'for i in `ls|grep -v README|grep -v Makefile`; do echo "### $$i"; echo; ./$$i --help; done >> README.md; true'


.PHONY: create_readme .PHONY: create_readme

0 comments on commit 18651f5

Please sign in to comment.