Closed hpb0412 closed 3 months ago
Fix as reported here: https://github.com/jtakakura/asdf-odin/issues/7
Explanation:
This command mv "$ASDF_DOWNLOAD_PATH"/dist/* "$ASDF_DOWNLOAD_PATH", it moves all children to the parent directory and left the /dist available and empty.
mv "$ASDF_DOWNLOAD_PATH"/dist/* "$ASDF_DOWNLOAD_PATH"
/dist
empty
Therefore, removing the /dist will eliminate all unwanted side effects.
Tried out this patch under the same conditions that I encountered the original issue with, and looks like it fixes it 👍
Thank you for your PR. I made another simple fix, so I will close this PR.
Fix as reported here: https://github.com/jtakakura/asdf-odin/issues/7
Explanation:
This command
mv "$ASDF_DOWNLOAD_PATH"/dist/* "$ASDF_DOWNLOAD_PATH"
, it moves all children to the parent directory and left the/dist
available andempty
.Therefore, removing the
/dist
will eliminate all unwanted side effects.