brintos

brintos / llvm-project-archived public Read only

0
0
Text · 841 B · 40e405b Raw
20 lines · bash
1#!/usr/bin/env bash2# ===----------------------------------------------------------------------===##3#4# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.5# See https://llvm.org/LICENSE.txt for license information.6# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception7#8# ===----------------------------------------------------------------------===##9 10set -e11 12# Different versions of adb can sometimes be incompatible (i.e. "adb server13# version (nn) doesn't match this client (mm); killing..."). Ensure that the adb14# in the main builder image matches that in the emulator by sharing the15# platform-tools from the main image.16if [ -d /mnt/android-platform-tools ]; then17    sudo rm -fr /mnt/android-platform-tools/platform-tools18    sudo cp -r /opt/android/sdk/platform-tools /mnt/android-platform-tools19fi20