Fix manpath detection
Checking for MANPATH without quotes always returns true, so that it breaks bash-completion for man pages on modern systems without MANPATH environment variable.
This commit is contained in:
		
							parent
							
								
									74f75c8558
								
							
						
					
					
						commit
						ebc42f8b59
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -75,7 +75,7 @@ if [ -n "$HOME" ] && [ -n "$USER" ]; then | ||||||
|         export NIX_SSL_CERT_FILE="$NIX_LINK/etc/ca-bundle.crt" |         export NIX_SSL_CERT_FILE="$NIX_LINK/etc/ca-bundle.crt" | ||||||
|     fi |     fi | ||||||
| 
 | 
 | ||||||
|     if [ -n ${MANPATH} ]; then |     if [ -n "${MANPATH}" ]; then | ||||||
|         export MANPATH="$NIX_LINK/share/man:$MANPATH" |         export MANPATH="$NIX_LINK/share/man:$MANPATH" | ||||||
|     fi |     fi | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue