changed prune to 3rd arg in check
This commit is contained in:
		
							parent
							
								
									77396e3f59
								
							
						
					
					
						commit
						eb6d634460
					
				@ -376,7 +376,7 @@ func commandDaemon(daemon Daemon) *exec.Cmd {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// helper to check if args match "docker prune"
 | 
					// helper to check if args match "docker prune"
 | 
				
			||||||
func isCommandPrune(args []string) bool {
 | 
					func isCommandPrune(args []string) bool {
 | 
				
			||||||
	return len(args) > 2 && args[1] == "prune"
 | 
						return len(args) > 3 && args[2] == "prune"
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func commandPrune() *exec.Cmd {
 | 
					func commandPrune() *exec.Cmd {
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user