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
file
umask
Describe the bug All file functions follow umask even if explicitly set permissions in function calls.
To Reproduce
file.mkdir(perms=0o777, '/tmp/1') file.write(data='test', perms=0o777, '/tmp/2') output.file(perm=0o777, %opus, '/tmp/3', blank())
Expected behavior If the perm-like parameter is explicitly set, then umask should be overridden. Add the umask set function.
perm
Version details
ubuntu:22.04
Install method Deb package from liquidsoap releases at github
Common issues N/A
The text was updated successfully, but these errors were encountered:
6557ff5
Add umask get/set. Fixes: #2840
5a66ab4
Thanks for reporting. I added umask getter/setter, following the settings convention:
# Get current umask: umask() # Set current umask: umask.set(...) # Equivalent to in `main`/2.2: umask := ...
Sorry, something went wrong.
No branches or pull requests
Describe the bug
All
file
functions followumask
even if explicitly set permissions in function calls.To Reproduce
Expected behavior
If the
perm
-like parameter is explicitly set, thenumask
should be overridden.Add the
umask
set function.Version details
ubuntu:22.04
in dockerInstall method
Deb package from liquidsoap releases at github
Common issues
N/A
The text was updated successfully, but these errors were encountered: