You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
	
	
		
			31 lines
		
	
	
		
			592 B
		
	
	
	
		
			Bash
		
	
		
		
			
		
	
	
			31 lines
		
	
	
		
			592 B
		
	
	
	
		
			Bash
		
	
| 
								 
											4 years ago
										 
									 | 
							
								#!/bin/sh
							 | 
						||
| 
								 | 
							
								if [ -z "$husky_skip_init" ]; then
							 | 
						||
| 
								 | 
							
								  debug () {
							 | 
						||
| 
								 | 
							
								    [ "$HUSKY_DEBUG" = "1" ] && echo "husky (debug) - $1"
							 | 
						||
| 
								 | 
							
								  }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  readonly hook_name="$(basename "$0")"
							 | 
						||
| 
								 | 
							
								  debug "starting $hook_name..."
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  if [ "$HUSKY" = "0" ]; then
							 | 
						||
| 
								 | 
							
								    debug "HUSKY env variable is set to 0, skipping hook"
							 | 
						||
| 
								 | 
							
								    exit 0
							 | 
						||
| 
								 | 
							
								  fi
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  if [ -f ~/.huskyrc ]; then
							 | 
						||
| 
								 | 
							
								    debug "sourcing ~/.huskyrc"
							 | 
						||
| 
								 | 
							
								    . ~/.huskyrc
							 | 
						||
| 
								 | 
							
								  fi
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  export readonly husky_skip_init=1
							 | 
						||
| 
								 | 
							
								  sh -e "$0" "$@"
							 | 
						||
| 
								 | 
							
								  exitCode="$?"
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  if [ $exitCode != 0 ]; then
							 | 
						||
| 
								 | 
							
								    echo "husky - $hook_name hook exited with code $exitCode (error)"
							 | 
						||
| 
								 | 
							
								    exit $exitCode
							 | 
						||
| 
								 | 
							
								  fi
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  exit 0
							 | 
						||
| 
								 | 
							
								fi
							 |