summaryrefslogtreecommitdiffstats
path: root/build/tree_truth.sh
diff options
context:
space:
mode:
authorjohnme <johnme@chromium.org>2014-11-11 08:53:15 -0800
committerCommit bot <commit-bot@chromium.org>2014-11-11 16:53:33 +0000
commit60ddc296051853a387b67f554177ca2a8a659829 (patch)
tree152520c78b19a1a2918a7c59659e9604e7d17940 /build/tree_truth.sh
parent74abcdd396ba092c983c1f6ec55604fe20b62570 (diff)
downloadchromium_src-60ddc296051853a387b67f554177ca2a8a659829.zip
chromium_src-60ddc296051853a387b67f554177ca2a8a659829.tar.gz
chromium_src-60ddc296051853a387b67f554177ca2a8a659829.tar.bz2
Print project path in build/tree_truth.sh (fix typo)
Review URL: https://codereview.chromium.org/714173002 Cr-Commit-Position: refs/heads/master@{#303660}
Diffstat (limited to 'build/tree_truth.sh')
-rwxr-xr-xbuild/tree_truth.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/build/tree_truth.sh b/build/tree_truth.sh
index 03d0523..617092d 100755
--- a/build/tree_truth.sh
+++ b/build/tree_truth.sh
@@ -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
}