| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 | #!/usr/bin/env bash# shellcheck disable=SC1091set -exif [[ "${CI_BUILD}" == "no" ]]; then  exit 1fitar -xzf ./vscode.tar.gzchown -R root:root vscodecd vscode || { echo "'vscode' dir not found"; exit 1; }export VSCODE_SKIP_NODE_VERSION_CHECK=1export VSCODE_SYSROOT_PREFIX='-glibc-2.17'if [[ -d "../patches/${OS_NAME}/client/" ]]; then  for file in "../patches/${OS_NAME}/client/"*.patch; do    if [[ -f "${file}" ]]; then      echo applying patch: "${file}";      if ! git apply --ignore-whitespace "${file}"; then        echo failed to apply patch "${file}" >&2        exit 1      fi    fi  donefifor i in {1..5}; do # try 5 times  yarn --cwd build --frozen-lockfile --check-files && break  if [[ $i == 3 ]]; then    echo "Yarn failed too many times" >&2    exit 1  fi  echo "Yarn failed $i, trying again..."done./build/azure-pipelines/linux/install.shnode build/azure-pipelines/distro/mixin-npmyarn gulp "vscode-linux-${VSCODE_ARCH}-min-ci"find "../VSCode-linux-${VSCODE_ARCH}" -print0 | xargs -0 touch -ccd ..
 |