mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			874 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			874 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
set -e
 | 
						|
 | 
						|
version=0.14.0
 | 
						|
tarball=semgrep-v$version-ubuntu-16.04.tgz
 | 
						|
sha256=8b9437af0540ed9664904f9603d9d6ad011dad46433cba74e524c7753c7732c9
 | 
						|
tarball_url=https://github.com/returntocorp/semgrep/releases/download/v$version/$tarball
 | 
						|
 | 
						|
check_version () {
 | 
						|
    out="$(semgrep --version 2>/dev/null)" && [ "$out" = "$version" ]
 | 
						|
}
 | 
						|
 | 
						|
if ! check_version; then
 | 
						|
    tmpdir="$(mktemp -d)"
 | 
						|
    trap 'rm -r "$tmpdir"' EXIT
 | 
						|
    cd "$tmpdir"
 | 
						|
    wget -nv "$tarball_url"
 | 
						|
    sha256sum -c <<< "$sha256  $tarball"
 | 
						|
    tar -xzf "$tarball" -C /usr/local/lib/ semgrep-files/
 | 
						|
    ln -sf /usr/local/lib/semgrep-files/semgrep /usr/local/bin/semgrep
 | 
						|
    ln -sf /usr/local/lib/semgrep-files/semgrep-core /usr/local/bin/semgrep-core
 | 
						|
 | 
						|
    # Clean old files from sgrep 0.4.9b5.
 | 
						|
    rm -rf /usr/local/lib/sgrep-lint-files /usr/local/bin/sgrep-lint /usr/local/bin/sgrep
 | 
						|
 | 
						|
    check_version
 | 
						|
fi
 |