16 lines
		
	
	
		
			367 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			367 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
source "${PALUDIS_EBUILD_DIR}/echo_functions.bash"
 | 
						|
source "/etc/paludis/hooks/set_portdir.bash"
 | 
						|
 | 
						|
if [[ ${TARGET} == gentoo ]] ; then
 | 
						|
	GLSADIR=${PORTDIR}/metadata/glsa
 | 
						|
	ebegin "Updating GLSAs"
 | 
						|
	if [[ -e ${GLSADIR} ]]; then
 | 
						|
		git -C "${GLSADIR}" pull -q --ff
 | 
						|
	else
 | 
						|
		git clone -q https://anongit.gentoo.org/git/data/glsa.git "${GLSADIR}"
 | 
						|
	fi
 | 
						|
	eend "$?"
 | 
						|
fi
 |