Commit 6dd7696e authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Prueba echos en líneas independientes

parent be920d33
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7,8 +7,8 @@ include:
  variables:
    DEPLOY_DIR_NAME: deploy
  before_script:
    - echo "Find Compose files with known names automatically .."
    - >
      echo "Find Compose files with known names automatically ..";
      if [ -z ${COMPOSE_FILE} ];
      then
        firstNewComposeFile=$(echo "${NEW_COMPOSE_FILE}" | cut -d ':' -f 1);
+1 −1
Original line number Diff line number Diff line
@@ -16,8 +16,8 @@
    NEW_COMPOSE_FILE_NAME: compose.tmpl.yaml:compose.dev.yaml
    OLD_COMPOSE_FILE_NAME: docker-compose.tmpl.yml:docker-compose.dev.yml
  before_script:
    - echo "Find Compose files with known names at known paths automatically .."
    - >
      echo "Find Compose files with known names at known paths automatically ..";
      if [ -z ${COMPOSE_FILE_NAME} ];
      then
        for directory in ${COMPOSE_PROJECT_DIRECTORY:-build deploy .};
+1 −1
Original line number Diff line number Diff line
@@ -19,8 +19,8 @@ lint-dockerfile:
    LINT_IMAGE_TAG: latest
    DOCKERFILE_NAME: Dockerfile
  before_script:
    - echo "Find Dockerfile in depth automatically by file name .."
    - >
      echo "Find Dockerfile in depth automatically by file name ..";
      if [ -z "${DOCKERFILE_PATH}" ];
      then
        dockerfilePath=$(find -name "${DOCKERFILE_NAME}");