Fix#275
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR addresses the issue of incorrect execution order for erasing files and directories as identified by @daeho-ro. Key changes include reordering the file removal logic in the erasure handler, fixing the use of the downloads directory in the shell branch, and removing an obsolete configuration file along with an unused property in Cargo.toml.
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| src/handlers/erase_handler.rs | Reorders removal logic and adjusts the env_path assignment |
| cliff.toml | Removes deprecated git-cliff configuration |
| Cargo.toml | Removes an unused "plugin" property from the binary configuration |
|
We have another error, It might be looking for some shell envs but cannot found. |
Hmm I will try to check this tomorrow, do |
|
I think so, it is from github actions. |
That is odd then, |
|
@daeho-ro how is it resolvable? I want to publish the release... I don't know how Github Actions macos works but this is like the only way to retrieve the user's zshrc file that I know of. |
|
I think need some time to dig more, homebrew installation is somehow wrong. You can still release whenever, without version bump on the homebrew side. |
Hmm I see, keep me posted. |
|
Homebrew only did I got this error. I am using warp terminal with zsh. I have Am I miss something to install or any further installation steps? |
|
Hmmm it's giving an error that $home is empty despite it not? I'll try to fix this. Edit: you are also probably not missing anything in the installation steps it's probably something I fucked up. |
|
@daeho-ro okay i think the problem might be cuz i am only modifying .zshenv, i will add .zshrc as last fallback and we will see if it resolves it. Or I can just ignore those errors and skip anything related to path erasure |
|
yo @daeho-ro sorry for hiatus, will this do? I decided to just ignore the errors and skip path erasure |
Fix incorrect order of executions found by @daeho-ro