mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2025-11-04 21:31:19 +08:00 
			
		
		
		
	fix(heroku): fix XDG cache directory name and code style (#10436)
This commit is contained in:
		
							parent
							
								
									52a46ec362
								
							
						
					
					
						commit
						b7fb0a55c0
					
				@ -1,9 +1,9 @@
 | 
				
			|||||||
HEROKU_AC_CACHE_DIR="$HOME/.cache"
 | 
					if [[ "$OSTYPE" = darwin* ]]; then
 | 
				
			||||||
if [ "$(uname -s)" = "Darwin" ]; then
 | 
					  cache_dir="${HOME}/Library/Caches"
 | 
				
			||||||
  HEROKU_AC_CACHE_DIR="$HOME/Library/Caches"
 | 
					else
 | 
				
			||||||
 | 
					  cache_dir="${XDG_CACHE_HOME:-"${HOME}/.cache"}"
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
if [ ! -z "$XDG_CACHE_HOME" ]; then
 | 
					
 | 
				
			||||||
  HEROKU_AC_CACHE_DIR="$XDG_CACHE_DIR"
 | 
					setup_path="${cache_dir}/heroku/autocomplete/zsh_setup"
 | 
				
			||||||
fi
 | 
					[[ -f "$setup_path" ]] && source $setup_path
 | 
				
			||||||
HEROKU_AC_ZSH_SETUP_PATH=$HEROKU_AC_CACHE_DIR/heroku/autocomplete/zsh_setup
 | 
					unset cache_dir setup_path
 | 
				
			||||||
[ -f $HEROKU_AC_ZSH_SETUP_PATH ] && source $HEROKU_AC_ZSH_SETUP_PATH
 | 
					 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user