Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 824fcc37 authored by Mohammed Althaf T's avatar Mohammed Althaf T 😊
Browse files

docker: Fix script format

parent 757945b3
Loading
Loading
Loading
Loading
+13 −10
Original line number Original line Diff line number Diff line
@@ -165,7 +165,10 @@ for branch in ${BRANCH_NAME//,/ }; do
    fi
    fi


    echo ">> [$(date)] Running: $repo_cmd" | tee -a "$repo_log"
    echo ">> [$(date)] Running: $repo_cmd" | tee -a "$repo_log"
    eval "$repo_cmd" &>>"$repo_log" || { echo ">> [$(date)] ERROR: Failed to initialize repository" | tee -a "$repo_log"; exit 1; }
    eval "$repo_cmd" &>>"$repo_log" || {
      echo ">> [$(date)] ERROR: Failed to initialize repository" | tee -a "$repo_log"
      exit 1
    }


    # Copy local manifests to the appropriate folder in order take them into consideration
    # Copy local manifests to the appropriate folder in order take them into consideration
    echo ">> [$(date)] Copying '$LMANIFEST_DIR/*.xml' to '.repo/local_manifests/'"
    echo ">> [$(date)] Copying '$LMANIFEST_DIR/*.xml' to '.repo/local_manifests/'"
+12 −12

File changed.

Contains only whitespace changes.