123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #!/usr/bin/env bash
- # shellcheck disable=SC1091
- exists() { type -t "$1" &> /dev/null; }
- export APP_NAME="VSCodium"
- export CI_BUILD="no"
- export OS_NAME="linux"
- export SHOULD_BUILD="yes"
- export SKIP_ASSETS="yes"
- export VSCODE_LATEST="no"
- export VSCODE_QUALITY="stable"
- while getopts ":ilp" opt; do
- case "$opt" in
- i)
- export VSCODE_QUALITY="insider"
- ;;
- l)
- export VSCODE_LATEST="yes"
- ;;
- p)
- export SKIP_ASSETS="no"
- ;;
- *)
- ;;
- esac
- done
- if ! exists yarn; then
- curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
- sudo apt-get install -y nodejs desktop-file-utils
- npm install -g yarn
- fi
- UNAME_ARCH=$( uname -m )
- if [[ "${UNAME_ARCH}" == "x86_64" ]]; then
- export VSCODE_ARCH="x64"
- else
- export npm_config_arch=armv7l
- export npm_config_force_process_config="true"
- export VSCODE_ARCH="armhf"
- fi
- echo "OS_NAME=\"${OS_NAME}\""
- echo "SKIP_ASSETS=\"${SKIP_ASSETS}\""
- echo "VSCODE_ARCH=\"${VSCODE_ARCH}\""
- echo "VSCODE_LATEST=\"${VSCODE_LATEST}\""
- echo "VSCODE_QUALITY=\"${VSCODE_QUALITY}\""
- rm -rf vscode* VSCode*
- . get_repo.sh
- . build.sh
- if [[ "${SKIP_ASSETS}" == "no" ]]; then
- . prepare_assets.sh
- fi
|