We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The issue can be reproduced by executing run/bash with commit 6e4a5ce and issuing the following bash command:
run/bash
bash-4.4# mkdir -p fatfs/test; echo "world" > fatfs/test/hello; rm -r fatfs/test/ (null): cannot remove 'fatfs/test/': Operation not permitted
It works without trailing slash:
bash-4.4# mkdir -p fatfs/test; echo "world" > fatfs/test/hello; rm -r fatfs/test
...and it also works with or without trailing slash using the ramfs:
bash-4.4# mkdir -p tmp/test; echo "world" > tmp/test/hello; rm -r tmp/test bash-4.4# mkdir -p tmp/test; echo "world" > tmp/test/hello; rm -r tmp/test
The text was updated successfully, but these errors were encountered:
wip: run/bash: "mount" FAT file system
6e4a5ce
WIP commit to reproduce genodelabs#5329 interactively.
This issue reminds me of #2686, but it seems to be specific to the fatfs VFS-plugin.
Sorry, something went wrong.
No branches or pull requests
The issue can be reproduced by executing
run/bash
with commit 6e4a5ce and issuing the following bash command:It works without trailing slash:
...and it also works with or without trailing slash using the ramfs:
The text was updated successfully, but these errors were encountered: