mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
#
 | 
						|
# As of 07 December 2022, per https://pkgs.org/download/transifex-cli, only
 | 
						|
# Void Linux and KaOS package the new Go-based Transifex CLI officially, so our
 | 
						|
# safest bet is to pull the binaries from GitHub Releases directly for now.
 | 
						|
#
 | 
						|
# These binaries do not dynamically link to anything, and thus should work on
 | 
						|
# glibc and musl (Alpine, Void, etc.) systems equally well.
 | 
						|
set -euo pipefail
 | 
						|
 | 
						|
version=1.6.10
 | 
						|
arch="$(uname -m)"
 | 
						|
 | 
						|
case $arch in
 | 
						|
    x86_64)
 | 
						|
        tarball="tx-linux-amd64.tar.gz"
 | 
						|
        sha256=dcc747ae863dd5a232b6a322f78b8621f43cd6032189ee89e979418cc24927f2
 | 
						|
        ;;
 | 
						|
 | 
						|
    aarch64)
 | 
						|
        tarball="tx-linux-arm64.tar.gz"
 | 
						|
        sha256=05b152afed1971f3f7662bb775ca7da0b158d1c7d0bc9ca8c9d481f5ea34916c
 | 
						|
        ;;
 | 
						|
esac
 | 
						|
 | 
						|
check_version() {
 | 
						|
    out="$(tx --version)" && [ "$out" = "TX Client, version=${version}" ]
 | 
						|
}
 | 
						|
 | 
						|
if ! check_version 2>/dev/null; then
 | 
						|
    set -x
 | 
						|
    tmpdir="$(mktemp -d)"
 | 
						|
    trap 'rm -r "$tmpdir"' EXIT
 | 
						|
    cd "$tmpdir"
 | 
						|
    curl_opts=(-fLO --retry 3)
 | 
						|
    curl "${curl_opts[@]}" "https://github.com/transifex/cli/releases/download/v${version}/${tarball}"
 | 
						|
    sha256sum -c <<<"$sha256 $tarball"
 | 
						|
    tar -xzf "$tarball" --no-same-owner tx
 | 
						|
    install -Dm755 tx /usr/local/bin/tx
 | 
						|
    check_version
 | 
						|
fi
 |