if the top commit includes actual content, this was being displayed
in the devstack log, which was just confusing. --quiet suppresses
this.
Change-Id: Id52604d3b2b9a1372746120cb5d8d741c35576b7
| ... | ... |
@@ -556,7 +556,7 @@ function git_clone {
|
| 556 | 556 |
echo "Running in offline mode, clones already exist" |
| 557 | 557 |
# print out the results so we know what change was used in the logs |
| 558 | 558 |
cd $GIT_DEST |
| 559 |
- git show --oneline |
|
| 559 |
+ git show --oneline --quiet |
|
| 560 | 560 |
return |
| 561 | 561 |
fi |
| 562 | 562 |
|
| ... | ... |
@@ -604,7 +604,7 @@ function git_clone {
|
| 604 | 604 |
|
| 605 | 605 |
# print out the results so we know what change was used in the logs |
| 606 | 606 |
cd $GIT_DEST |
| 607 |
- git show --oneline |
|
| 607 |
+ git show --oneline --quiet |
|
| 608 | 608 |
} |
| 609 | 609 |
|
| 610 | 610 |
|