From a24b5365b1834c6e68d7289f8bd2bfd808b4dab5 Mon Sep 17 00:00:00 2001 From: Conrad Date: Tue, 6 Oct 2020 14:38:44 +0200 Subject: [PATCH] Fixed parameter names a second time --- entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 1b8857f..5e62a77 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -27,10 +27,10 @@ _git_changed() { # PROGRAM echo "Installing dependencies..." -pip install -r $PIP_PATH +pip install -r $INPUT_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 $INPUT_OUTPUT_PATH # To keep runtime good, just continue if something was changed if _git_changed;