Print project path in build/tree_truth.sh (fix typo)
Review URL: https://codereview.chromium.org/714173002 Cr-Original-Commit-Position: refs/heads/master@{#303660} Cr-Mirrored-From: https://chromium.googlesource.com/chromium/src Cr-Mirrored-Commit: 60ddc296051853a387b67f554177ca2a8a659829
This commit is contained in:
Родитель
ef1140b4c7
Коммит
2ceceecd7c
|
@ -87,9 +87,10 @@ tt_print_all() {
|
|||
# Print a summary of the last 10 commits for each repo.
|
||||
tt_brief_summary() {
|
||||
echo "@@@BUILD_STEP Brief summary of recent CLs in every branch@@@"
|
||||
for p in $@; do
|
||||
echo $project
|
||||
(cd $CHROME_SRC/../$p && git log -n 10 --format=" %H %s %an, %ad" | cat)
|
||||
for project in $@; do
|
||||
echo $project:
|
||||
local full_path=$CHROME_SRC/../$project
|
||||
(cd $full_path && git log -n 10 --format=" %H %s %an, %ad" | cat)
|
||||
echo "================================================================="
|
||||
done
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче