Skip to content

Commit

Permalink
fix: improve tldr target in makefile
Browse files Browse the repository at this point in the history
shows chained targets correctly
  • Loading branch information
cerico committed Apr 21, 2023
1 parent 113ebe5 commit 97dc00e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ANSIBLE=$$(python3 -m site --user-base)/bin/
tldr:
@echo Available commands
@echo ------------------
@for i in `grep -v "\t" Makefile | grep "a*:" | tr -d \:`; do echo make $$i; done
@for i in `grep -v "\t" Makefile | grep "a*:" | awk -F ":" '{print $$1}'`; do echo make $$i; done
update:
python3 -m pip install --upgrade pip
python3 -m pip install --user ansible
Expand Down

0 comments on commit 97dc00e

Please sign in to comment.