()
| 101 | } |
| 102 | |
| 103 | func utilityNixProfilePath() (string, error) { |
| 104 | path, err := utilityDataPath() |
| 105 | if err != nil { |
| 106 | return "", err |
| 107 | } |
| 108 | return filepath.Join(path, ".devbox/nix/profile"), nil |
| 109 | } |
| 110 | |
| 111 | func utilityBinPath() (string, error) { |
| 112 | nixProfilePath, err := utilityNixProfilePath() |
no test coverage detected