From e92a2d468f52870287c5485f7273f2e13aba3937 Mon Sep 17 00:00:00 2001 From: Conrad Date: Tue, 6 Oct 2020 14:37:05 +0200 Subject: [PATCH] Fixed parameter naming --- entrypoint.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index c15741f..1b8857f 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -27,10 +27,10 @@ _git_changed() { # PROGRAM echo "Installing dependencies..." -pip install -r $pip_path -pip install django-extensions pyparsing pydot +pip install -r $PIP_PATH +pip install django-extensions pyparsing pydot echo "Creating data model..." -python manage.py graph_models -a -g-o $output_path +python manage.py graph_models -a -g-o $OUTPUT_PATH # To keep runtime good, just continue if something was changed if _git_changed;