PipTargetDir returns the target directory for installing python dependencies.
()
| 334 | } |
| 335 | return gcp.UserErrorf("found incompatible dependencies: %q", result.Stdout) |
| 336 | } |
| 337 | |
| 338 | // MakerPipInstaller implements the PipInstaller interface for the maker tool. |
| 339 | type MakerPipInstaller struct { |
| 340 | TargetPlatform string |
| 341 | } |
| 342 | |
| 343 | // PipTargetDir returns the target directory for installing python dependencies. |
| 344 | func PipTargetDir() string { |
| 345 | targetDir := os.Getenv(env.PipTargetDir) |
no outgoing calls
no test coverage detected