Skip to content

Commit

Permalink
chore(makefile) tabs indentation + dev target improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
thibaultcha committed Sep 20, 2016
1 parent ed39042 commit f4c0805
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ install:
@luarocks make

dev: install
@for rock in $(DEV_ROCKS); do\
if ! command -v $$rock > /dev/null; then\
echo $$rock not found, installing via luarocks...;\
luarocks install $$rock;\
else\
echo $$rock already installed, skipping;\
fi\
@for rock in $(DEV_ROCKS) ; do \
if ! luarocks list | grep $$rock > /dev/null ; then \
echo $$rock not found, installing via luarocks... ; \
luarocks install $$rock ; \
else \
echo $$rock already installed, skipping ; \
fi \
done;

busted:
Expand Down

0 comments on commit f4c0805

Please sign in to comment.