From ad97ebb09bd8c08f9751fe62deba9881c006a4d2 Mon Sep 17 00:00:00 2001 From: Luke Sneeringer Date: Wed, 22 Oct 2014 10:05:16 -0500 Subject: [PATCH] Fix Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e73b39a89b..0d205efd85 100644 --- a/Makefile +++ b/Makefile @@ -138,11 +138,11 @@ develop: @if [ "$(VIRTUAL_ENV)" ]; then \ pip uninstall -y awx; \ $(PYTHON) setup.py develop; \ - awx-manage register_instance --primary --ip-address=127.0.0.1 + awx-manage register_instance --primary --ip-address=127.0.0.1; \ else \ sudo pip uninstall -y awx; \ sudo $(PYTHON) setup.py develop; \ - sudo awx-manage register_instance --primary --ip-address=127.0.0.1 + sudo awx-manage register_instance --primary --ip-address=127.0.0.1; \ fi # Refresh development environment after pulling new code.