Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions cibuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down