update_mbedtls.sh 198 B

1234567891011
  1. #!/bin/bash
  2. MBEDTLS_DIR="external_libs/mbedtls"
  3. if [ ! -d ${MBEDTLS_DIR} ]; then
  4. git clone -q packages/mbedtls_module.git ${MBEDTLS_DIR}
  5. else
  6. cd ${MBEDTLS_DIR}
  7. git pull -q
  8. cd -
  9. fi