fix 500 when edit hook (#8782)
This commit is contained in:
		
							parent
							
								
									232340f5e3
								
							
						
					
					
						commit
						21dfe1b256
					
				
					 1 changed files with 5 additions and 0 deletions
				
			
		|  | @ -90,6 +90,11 @@ func (h *Hook) Update() error { | ||||||
| 		h.IsActive = false | 		h.IsActive = false | ||||||
| 		return nil | 		return nil | ||||||
| 	} | 	} | ||||||
|  | 	d := filepath.Dir(h.path) | ||||||
|  | 	if err := os.MkdirAll(d, os.ModePerm); err != nil { | ||||||
|  | 		return err | ||||||
|  | 	} | ||||||
|  | 
 | ||||||
| 	err := ioutil.WriteFile(h.path, []byte(strings.Replace(h.Content, "\r", "", -1)), os.ModePerm) | 	err := ioutil.WriteFile(h.path, []byte(strings.Replace(h.Content, "\r", "", -1)), os.ModePerm) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		return err | 		return err | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue