Commit b0f1c7ab authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Corrige comprobación de existencia de Dockerfile

parent 82d73b22
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@ lint-dockerfile:
      then
        echo "Dockerfile with name '${DOCKERFILE_NAME}' not found in project!";
        exit 1;
      elif [ ! f "${DOCKERFILE_PATH}" ];
      elif [ ! -f "${DOCKERFILE_PATH}" ];
      then
        echo "Dockerfile '${DOCKERFILE_PATH}' is not a valid file!";
        exit 1;