filesystem permission checks now issue warnings instead of errors, improves NFS compatibility

This commit is contained in:
jonaswinkler 2021-01-28 22:22:25 +01:00
parent ab04817bea
commit f872221c49

View File

@ -22,7 +22,7 @@ def path_check(var, directory):
exists_hint.format(directory)
))
elif not os.access(directory, os.W_OK | os.X_OK):
messages.append(Error(
messages.append(Warning(
writeable_message.format(var),
writeable_hint.format(directory)
))