We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a560b9 commit 1e5225dCopy full SHA for 1e5225d
1 file changed
src/checks.sh
@@ -26,9 +26,7 @@ check_if_writable()
26
27
check_if_file_readable()
28
{
29
- # checks if the given dir is writable, if it exists
30
- # it's ok if the dir does not exist at all, because it will be created
31
- # during solid server startup then and have the correct permissions
+ # checks if the given file exists and is readable
32
file=$1
33
if [ -e "${file}" ]; then
34
if [ -r "${file}" ]; then
0 commit comments