You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			21 lines
		
	
	
		
			700 B
		
	
	
	
		
			Bash
		
	
			
		
		
	
	
			21 lines
		
	
	
		
			700 B
		
	
	
	
		
			Bash
		
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
set -euo pipefail
 | 
						|
 | 
						|
# shellcheck disable=SC1091
 | 
						|
source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh"
 | 
						|
 | 
						|
PROTOC_VERSION=${VERSION:-24.4}
 | 
						|
PROTOC_ZIP=protoc-$PROTOC_VERSION-linux-x86_64.zip
 | 
						|
TMP_DIR=$(mktemp --directory)
 | 
						|
DEST_FILE=$TMP_DIR/$PROTOC_ZIP
 | 
						|
URL=https://github.com/protocolbuffers/protobuf/releases/download/v$PROTOC_VERSION/$PROTOC_ZIP
 | 
						|
 | 
						|
curl --output "$DEST_FILE" --location "$URL"
 | 
						|
sudo unzip -o "$DEST_FILE" -d /usr/local bin/protoc
 | 
						|
sudo chmod 755 /usr/local/bin/protoc
 | 
						|
sudo unzip -o "$DEST_FILE" -d /usr/local 'include/*'
 | 
						|
sudo find /usr/local/include/google -type f -exec chmod 644 {} \;
 | 
						|
sudo find /usr/local/include/google -type d -exec chmod 755 {} \;
 | 
						|
rm -rfv "$TMP_DIR"
 |