mirror of
				https://github.com/cucumber-sp/yandex-music-linux.git
				synced 2025-10-31 11:51:21 +03:00 
			
		
		
		
	Check if exe binary was update first, then update all flake.lock only when exe was updated. Change-Id: I3ae7e7453cfe4ea78d1c4e598cc4a3370cd12f1d
		
			
				
	
	
		
			26 lines
		
	
	
		
			486 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			486 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| set -e
 | |
| 
 | |
| if [ -f /etc/os-release ]; then
 | |
|     . /etc/os-release
 | |
|     OS=$NAME
 | |
| elif [ -f /etc/lsb-release ]; then
 | |
|     . /etc/lsb-release
 | |
|     OS=$DISTRIB_ID
 | |
| else
 | |
|     OS=$(uname -s)
 | |
| fi
 | |
| 
 | |
| case $OS in
 | |
|     "Arch Linux")
 | |
|         echo "Arch Linux"
 | |
|         pacman -S --noconfirm git sudo base-devel jq nix
 | |
|         git config --global --add safe.directory "*"
 | |
|         sh ./utility/generate_packages.sh
 | |
|         ;;
 | |
|     *)
 | |
|         echo "Operating system is not recognized."
 | |
|         ;;
 | |
| esac
 |