Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add arch to binary and image cache paths #13539

Merged
merged 7 commits into from
Feb 10, 2022
Prev Previous commit
Next Next commit
Update pkg/minikube/detect/detect.go
Co-authored-by: Medya Ghazizadeh <[email protected]>
  • Loading branch information
sharifelgamal and medyagh authored Feb 3, 2022
commit 5635ca72123d28e44585f3e0543b66ffe6c6f6b7
2 changes: 1 addition & 1 deletion pkg/minikube/detect/detect.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ func GithubActionRunner() bool {
return os.Getenv("GITHUB_ACTIONS") == "true"
}

// ImageCacheDir returns the path to the container image cache directory for the current architecture
// ImageCacheDir returns the path to the container image cache directory in minikube home folder for the current architecture
func ImageCacheDir() string {
return filepath.Join(localpath.MakeMiniPath("cache", "images"), runtime.GOARCH)
}
Expand Down