From a112233e2a6d0cecd624e13630bab47e5146218f Mon Sep 17 00:00:00 2001 From: f Date: Mon, 17 May 2021 13:14:57 -0300 Subject: [PATCH] soportar `make bundle` --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e2e320d6..af466482 100644 --- a/Makefile +++ b/Makefile @@ -29,10 +29,13 @@ serve: /etc/hosts # make rails args="db:migrate" rails: - $(hain) 'cd /Sutty/sutty; bundle exec rails $(args)' + $(MAKE) bundle args="exec rails $(args)" rake: - $(hain) 'cd /Sutty/sutty; bundle exec rake $(args)' + $(MAKE) bundle args="exec rake $(args)" + +bundle: + $(hain) 'cd /Sutty/sutty; bundle $(args)' # Servir JS con el dev server. # Esto acelera la compilaciĆ³n del javascript, tiene que correrse por separado