mirror of https://github.com/grafana/grafana.git
				
				
				
			
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
#!/usr/bin/env bash
 | 
						|
set -e
 | 
						|
 | 
						|
 | 
						|
 | 
						|
# Husky modified your git config to store git hooks in the repo, so do that change
 | 
						|
currentHooksPath=$(git config core.hooksPath || true)
 | 
						|
if [[ $currentHooksPath == ".husky" ]]; then
 | 
						|
  if [ -z "$SILENT" ]; then
 | 
						|
    echo "Unsetting git hooks path because it was previously set to .husky."
 | 
						|
    echo "If you had custom git hooks in .husky you may want to move them to .git/hooks"
 | 
						|
  fi
 | 
						|
 | 
						|
  git config --unset core.hooksPath
 | 
						|
fi
 | 
						|
 | 
						|
oldHuskyHookNames=(
 | 
						|
  "applypatch-msg"
 | 
						|
  "commit-msg"
 | 
						|
  "post-applypatch"
 | 
						|
  "post-checkout"
 | 
						|
  "post-commit"
 | 
						|
  "post-merge"
 | 
						|
  "post-receive"
 | 
						|
  "post-rewrite"
 | 
						|
  "post-update"
 | 
						|
  "pre-applypatch"
 | 
						|
  "pre-auto-gc"
 | 
						|
  "pre-merge-commit"
 | 
						|
  "pre-push"
 | 
						|
  "pre-rebase"
 | 
						|
  "pre-receive"
 | 
						|
  "push-to-checkout"
 | 
						|
  "sendemail-validate"
 | 
						|
  "update"
 | 
						|
)
 | 
						|
 | 
						|
#
 | 
						|
# Also extra-old husky dumped a bunch of hooks into .git/hooks, so check for them
 | 
						|
# and rename them so they don't run
 | 
						|
for hookName in "${oldHuskyHookNames[@]}"; do
 | 
						|
  hookPath=".git/hooks/$hookName"
 | 
						|
 | 
						|
  if [[ -f $hookPath ]]; then
 | 
						|
    if grep -q husky "$hookPath"; then
 | 
						|
      newHookPath="$hookPath.old"
 | 
						|
 | 
						|
      if [ -z "$SILENT" ]; then
 | 
						|
        echo "Renaming old husky hook $hookPath to $newHookPath"
 | 
						|
      fi
 | 
						|
 | 
						|
      # Handle backup logic for both macOS (BSD mv) and Linux (GNU mv)
 | 
						|
      if [[ -f "$newHookPath" ]]; then
 | 
						|
        # If .old file already exists, create numbered backup
 | 
						|
        counter=1
 | 
						|
        while [[ -f "$newHookPath.$counter" ]]; do
 | 
						|
          counter=$((counter + 1))
 | 
						|
        done
 | 
						|
        mv "$newHookPath" "$newHookPath.$counter"
 | 
						|
      fi
 | 
						|
      mv "$hookPath" "$newHookPath"
 | 
						|
    fi
 | 
						|
  fi
 | 
						|
done
 |