mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	This makes it clearer which step failed if there’s an error. Signed-off-by: Anders Kaseorg <anders@zulip.com>
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
set -euo pipefail
 | 
						|
 | 
						|
version=18.16.0
 | 
						|
arch="$(uname -m)"
 | 
						|
 | 
						|
case $arch in
 | 
						|
    x86_64)
 | 
						|
        tarball="node-v$version-linux-x64.tar.xz"
 | 
						|
        sha256=44d93d9b4627fe5ae343012d855491d62c7381b236c347f7666a7ad070f26548
 | 
						|
        ;;
 | 
						|
 | 
						|
    aarch64)
 | 
						|
        tarball="node-v$version-linux-arm64.tar.xz"
 | 
						|
        sha256=c81dfa0bada232cb4583c44d171ea207934f7356f85f9184b32d0dde69e2e0ea
 | 
						|
        ;;
 | 
						|
esac
 | 
						|
 | 
						|
check_version() {
 | 
						|
    out="$(node --version)" && [ "$out" = "v$version" ] \
 | 
						|
        && [ /usr/local/bin/pnpm -ef /srv/zulip-node/lib/node_modules/corepack/dist/pnpm.js ]
 | 
						|
}
 | 
						|
 | 
						|
if ! check_version 2>/dev/null; then
 | 
						|
    set -x
 | 
						|
    tmpdir="$(mktemp -d)"
 | 
						|
    trap 'rm -r "$tmpdir"' EXIT
 | 
						|
    cd "$tmpdir"
 | 
						|
    curl_opts=(-fLO --retry 3)
 | 
						|
    if [ -n "${CUSTOM_CA_CERTIFICATES:-}" ]; then
 | 
						|
        curl_opts+=(--cacert "${CUSTOM_CA_CERTIFICATES}")
 | 
						|
    fi
 | 
						|
    curl "${curl_opts[@]}" "https://nodejs.org/dist/v$version/$tarball"
 | 
						|
    sha256sum -c <<<"$sha256 $tarball"
 | 
						|
    rm -rf /srv/zulip-node
 | 
						|
    mkdir -p /srv/zulip-node
 | 
						|
    tar -xJf "$tarball" --no-same-owner --strip-components=1 -C /srv/zulip-node
 | 
						|
    ln -sf /srv/zulip-node/bin/{corepack,node,npm,npx} /usr/local/bin
 | 
						|
    COREPACK_DEFAULT_TO_LATEST=0 /usr/local/bin/corepack enable
 | 
						|
 | 
						|
    # Clean up after previous versions of this script
 | 
						|
    rm -rf /srv/zulip-yarn /usr/bin/yarn /usr/local/nvm
 | 
						|
 | 
						|
    check_version
 | 
						|
fi
 |