forked from zaclys/searxng
		
	Fix checksum virtualenv checks.
There's already precedence for not using GNUism sha256sum longopts as seen in searxng/utils/lib_go.sh so update lib.sh to not use them either. A nice side effect is now the sha256sum usage doesn't care if you're using BSD sha256sum or GNU sha256sum which makes this work under FreeBSD.
This commit is contained in:
		
							parent
							
								
									647a0aa98b
								
							
						
					
					
						commit
						4e2eb9922e
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -600,7 +600,7 @@ pyenv.OK() {
 | 
			
		|||
    fi
 | 
			
		||||
 | 
			
		||||
    if [ ! -f "${PY_ENV}/requirements.sha256" ] \
 | 
			
		||||
        || ! sha256sum --check --status <"${PY_ENV}/requirements.sha256" 2>/dev/null; then
 | 
			
		||||
        || ! sha256sum -c "${PY_ENV}/requirements.sha256" > /dev/null 2>&1; then
 | 
			
		||||
        build_msg PYENV "[virtualenv] requirements.sha256 failed"
 | 
			
		||||
        sed 's/^/          [virtualenv] - /' <"${PY_ENV}/requirements.sha256"
 | 
			
		||||
        return 1
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue