mirror of
				https://github.com/gohugoio/hugo.git
				synced 2024-05-11 05:54:58 +00:00 
			
		
		
		
	source: Consolidate filepath.Split calls
This commit is contained in:
		
				
					committed by
					
						
						Bjørn Erik Pedersen
					
				
			
			
				
	
			
			
			
						parent
						
							df44b1930a
						
					
				
				
					commit
					21054f730a
				
			@@ -92,8 +92,7 @@ func NewFile(relpath string) *File {
 | 
			
		||||
		relpath: relpath,
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	f.dir, _ = filepath.Split(f.relpath)
 | 
			
		||||
	_, f.logicalName = filepath.Split(f.relpath)
 | 
			
		||||
	f.dir, f.logicalName = filepath.Split(f.relpath)
 | 
			
		||||
	f.ext = strings.TrimPrefix(filepath.Ext(f.LogicalName()), ".")
 | 
			
		||||
	f.section = helpers.GuessSection(f.Dir())
 | 
			
		||||
	f.uniqueID = helpers.Md5String(f.LogicalName())
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user