Browse code

Merge "Ensure valid service names are passed to stack_install_service"

Jenkins authored on 2017/09/06 11:58:08
Showing 1 changed files
... ...
@@ -33,5 +33,8 @@ function stack_install_service {
33 33
         if [[ ${USE_VENV} = True && -n ${PROJECT_VENV[$service]:-} ]]; then
34 34
             unset PIP_VIRTUAL_ENV
35 35
         fi
36
+    else
37
+        echo "No function declared with name 'install_${service}'."
38
+        exit 1
36 39
     fi
37 40
 }