-
Notifications
You must be signed in to change notification settings - Fork 192
New issue
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
Permission handling problem in /tmp/.dotnet #437
Comments
Fixed by #439. |
fyi, the changed that cause this permission issue is being reverted: dotnet/runtime#90342. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After the last update the permissions of the session folder has changed.
Access permissions before update:
Access permissions after update:
In WSL(Ubuntu) the permissions are:
During the build an session folder is created by the default user. In app run mode another user is used. (Maybe the tmp folder should be deleted at the end of the build?)
This caused an error for some operations in c# (e.g. Create Mutex).
Sample Project: https://github.com/mkeuschn/named-mutex
SO: https://stackoverflow.com/questions/74823773/create-mutex-throws-error-the-system-cannot-open-the-device-or-file-specified
Workaround
I have added my own assemble file to delete the session folders.
Now it is working as expected.
The text was updated successfully, but these errors were encountered: