This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-testing.git
commit cb75fd73b5e183bb7c37699b8a9b2bf5d3adb077 Author: liuhaitao <[email protected]> AuthorDate: Thu Mar 12 16:20:35 2020 +0800 cibuild.sh: make sure git log print out the last commit Add 'git log -1' to make sure we know where the last commit is. Signed-off-by: liuhaitao <[email protected]> --- cibuild.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cibuild.sh b/cibuild.sh index f6dc1d1..9c2953a 100755 --- a/cibuild.sh +++ b/cibuild.sh @@ -157,13 +157,17 @@ function setup_repos { cd $nuttx; git pull else git clone https://github.com/apache/incubator-nuttx.git $nuttx + cd $nuttx fi + git log -1 if [ -d "$apps" ]; then cd $apps; git pull else git clone https://github.com/apache/incubator-nuttx-apps.git $apps + cd $apps fi + git log -1 popd }
