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.
		
		
		
		
		
			
		
			
				
	
	
		
			20 lines
		
	
	
		
			767 B
		
	
	
	
		
			Bash
		
	
			
		
		
	
	
			20 lines
		
	
	
		
			767 B
		
	
	
	
		
			Bash
		
	
#!/bin/bash
 | 
						|
 | 
						|
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
 | 
						|
 | 
						|
function error {
 | 
						|
  echo -e "\\e[91m$1\\e[39m"
 | 
						|
  exit 1
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
sudo rm -f /etc/apt/sources.list.d/box86.list
 | 
						|
echo "adding box86 repo..."
 | 
						|
sudo wget https://itai-nelken.github.io/weekly-box86-debs/debian/box86.list -O /etc/apt/sources.list.d/box86.list || error "Failed to download /etc/apt/sources.list.d/box86.list"
 | 
						|
echo "adding key..."
 | 
						|
wget -qO- https://itai-nelken.github.io/weekly-box86-debs/debian/KEY.gpg | sudo apt-key add - || error "Failed to add key to box86 repo!"
 | 
						|
echo "running 'sudo apt update'..."
 | 
						|
sudo apt update || error "Failed to run sudo apt update"
 | 
						|
echo "installing box86..."
 | 
						|
sudo apt install box86 -y || error "Failed to install the box86 package"
 |