You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default cache and repository config paths are set in /tmp/* (as in here), a path not available in non-UNIX OSs like Windows.
These paths should be either calculated using os.TempDir (which isn't the cleanest solution, but probably takes the least to implement), or use os.MkdirTemp and just cleanup the directory afterwards.
The text was updated successfully, but these errors were encountered:
The default cache and repository config paths are set in
/tmp/*
(as in here), a path not available in non-UNIX OSs like Windows.These paths should be either calculated using
os.TempDir
(which isn't the cleanest solution, but probably takes the least to implement), or useos.MkdirTemp
and just cleanup the directory afterwards.The text was updated successfully, but these errors were encountered: