Fixed Persistent-Run function propagation
This commit is contained in:
		
							
								
								
									
										22
									
								
								command.go
									
									
									
									
									
								
							
							
						
						
									
										22
									
								
								command.go
									
									
									
									
									
								
							@ -463,8 +463,11 @@ func (c *Command) execute(a []string) (err error) {
 | 
				
			|||||||
	c.preRun()
 | 
						c.preRun()
 | 
				
			||||||
	argWoFlags := c.Flags().Args()
 | 
						argWoFlags := c.Flags().Args()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if c.PersistentPreRun != nil {
 | 
						for p := c; p != nil; p = p.Parent() {
 | 
				
			||||||
		c.PersistentPreRun(c, argWoFlags)
 | 
							if p.PersistentPreRun != nil {
 | 
				
			||||||
 | 
								p.PersistentPreRun(c, argWoFlags)
 | 
				
			||||||
 | 
								break
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	if c.PreRun != nil {
 | 
						if c.PreRun != nil {
 | 
				
			||||||
		c.PreRun(c, argWoFlags)
 | 
							c.PreRun(c, argWoFlags)
 | 
				
			||||||
@ -475,8 +478,11 @@ func (c *Command) execute(a []string) (err error) {
 | 
				
			|||||||
	if c.PostRun != nil {
 | 
						if c.PostRun != nil {
 | 
				
			||||||
		c.PostRun(c, argWoFlags)
 | 
							c.PostRun(c, argWoFlags)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	if c.PersistentPostRun != nil {
 | 
						for p := c; p != nil; p = p.Parent() {
 | 
				
			||||||
		c.PersistentPostRun(c, argWoFlags)
 | 
							if p.PersistentPostRun != nil {
 | 
				
			||||||
 | 
								p.PersistentPostRun(c, argWoFlags)
 | 
				
			||||||
 | 
								break
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return nil
 | 
						return nil
 | 
				
			||||||
@ -601,14 +607,6 @@ func (c *Command) AddCommand(cmds ...*Command) {
 | 
				
			|||||||
			c.commandsMaxNameLen = nameLen
 | 
								c.commandsMaxNameLen = nameLen
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		c.commands = append(c.commands, x)
 | 
							c.commands = append(c.commands, x)
 | 
				
			||||||
 | 
					 | 
				
			||||||
		// Pass on peristent pre/post functions to children
 | 
					 | 
				
			||||||
		if x.PersistentPreRun == nil {
 | 
					 | 
				
			||||||
			x.PersistentPreRun = c.PersistentPreRun
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
		if x.PersistentPostRun == nil {
 | 
					 | 
				
			||||||
			x.PersistentPostRun = c.PersistentPostRun
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user