EC600U_esp32_iap_uart/qcloud-iot/tools/build_scripts/update_gtest.sh

11 lines
198 B
Bash
Raw Permalink Normal View History

2024-02-05 17:39:56 +08:00
#!/bin/bash
GOOGLE_TEST="external_libs/googletest"
if [ ! -d ${GOOGLE_TEST} ]; then
git clone -q packages/gtest_module.git ${GOOGLE_TEST}
else
cd ${GOOGLE_TEST}
git pull -q
cd -
fi