Skip to content

Commit cb75fd7

Browse files
liuguo09xiaoxiang781216
authored andcommitted
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 <liuhaitao@xiaomi.com>
1 parent 97098c2 commit cb75fd7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

cibuild.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,13 +157,17 @@ function setup_repos {
157157
cd $nuttx; git pull
158158
else
159159
git clone https://github.com/apache/incubator-nuttx.git $nuttx
160+
cd $nuttx
160161
fi
162+
git log -1
161163

162164
if [ -d "$apps" ]; then
163165
cd $apps; git pull
164166
else
165167
git clone https://github.com/apache/incubator-nuttx-apps.git $apps
168+
cd $apps
166169
fi
170+
git log -1
167171
popd
168172
}
169173

0 commit comments

Comments
 (0)