Skip to content
Snippets Groups Projects
Select Git revision
  • 7ea69a9a198e6209486bdd1a624f755e8424097c
  • master default protected
  • 1.31
  • 4.24.3
  • 4.24.2
  • 4.24.1
  • 4.24.0
  • 4.23.6
  • 4.23.5
  • 4.23.4
  • 4.23.3
  • 4.23.2
  • 4.23.1
  • 4.23.0
  • 4.22.3
  • 4.22.2
  • 4.22.1
  • 4.22.0
  • 4.21.0
  • 4.20.1
  • 4.20.0
  • 4.19.0
  • 4.18.0
23 results

Monster_Constraints.IsObject.html

Blame
  • util.go 363 B
    package configuration
    
    import (
    	error2 "gitlab.schukai.com/oss/utilities/conan/error"
    	"os"
    	"path"
    )
    
    func getAbsolutePath(sub string) string {
    
    	if path.IsAbs(sub) {
    		return sub
    	}
    
    	if configurationPath != "" {
    		return path.Clean(path.Join(configurationPath, sub))
    	}
    
    	p, err := os.Getwd()
    	error2.CheckError(err)
    
    	return path.Clean(path.Join(p, sub))
    
    }