From c99f240c8989086ebd41ed53f9dcba3201e1d0e1 Mon Sep 17 00:00:00 2001 From: Shane McDonald Date: Wed, 2 Nov 2016 14:29:25 -0400 Subject: [PATCH] Add node_modules bins to Makefile PATH --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index a6f593e940..b39e7a2501 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,4 @@ +PATH := awx/ui/node_modules/.bin:$(PATH) PYTHON = python PYTHON_VERSION = $(shell $(PYTHON) -c "from distutils.sysconfig import get_python_version; print get_python_version()") SITELIB=$(shell $(PYTHON) -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")