Files
daishengdong 3e631cd96a update qcloud sdk
1. iot-hub sdk update to 3.2.0
2. iot-explorer update to 3.1.1
2020-05-07 11:11:04 +08:00

11 lines
198 B
Bash

#!/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