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
According to #884 (comment), these are created when they don't exist, but I just installed aura, ran aura -A bottles, and I'm sitting at the "Proceed? [Y/n]" stage, and I checked at ~/.cache/aura/ and it only has the clones folder created.
Then, I proceeded with the build process, and I did get to build the first dependency, but at the end of that I got
mv: cannot move '/home/stereomato/.cache/aura/builds/python-pathvalidate/python-pathvalidate-3.2.1-1-any.pkg.tar.zst' to '/home/stereomato/.cache/aura/cache/python-pathvalidate-3.2.1-1-any.pkg.tar.zst': No such file or directory
And checking .cache/aura/ I do have the builds and clone folders, but not cache, hashes, or snapshots ones. So, I decided to create the cache folder myself, and restarted the process.
Now, this manages to install some of the AUR dependencies of bottles, but aura exits with "aura :: Failed to write file: /home/stereomato/.cache/aura/hashes/python-steamgriddb", which I can also fix by creating the folder manually.
Thanks for reporting this. This is very strange and the first time I've seen it. Aura is definitely supposed to create the directories, as you can see here:
/// The full path to the Aura-specific tarball cache.////// Creates the directory if it doesn't exist.pub(crate)fntarballs() -> Result<PathBuf,Error>{let path = aura_xdg_cache()?.join("cache");if path.is_dir().not(){
std::fs::create_dir_all(&path).map_err(|e| Error::Mkdir(path.clone(), e))?;}Ok(path)}
According to #884 (comment), these are created when they don't exist, but I just installed aura, ran aura -A bottles, and I'm sitting at the "Proceed? [Y/n]" stage, and I checked at ~/.cache/aura/ and it only has the clones folder created.
Then, I proceeded with the build process, and I did get to build the first dependency, but at the end of that I got
mv: cannot move '/home/stereomato/.cache/aura/builds/python-pathvalidate/python-pathvalidate-3.2.1-1-any.pkg.tar.zst' to '/home/stereomato/.cache/aura/cache/python-pathvalidate-3.2.1-1-any.pkg.tar.zst': No such file or directory
And checking .cache/aura/ I do have the builds and clone folders, but not cache, hashes, or snapshots ones. So, I decided to create the cache folder myself, and restarted the process.
Now, this manages to install some of the AUR dependencies of bottles, but aura exits with "aura :: Failed to write file: /home/stereomato/.cache/aura/hashes/python-steamgriddb", which I can also fix by creating the folder manually.
output of
aura conf --gen
The text was updated successfully, but these errors were encountered: