Skip to content

Commit 1e5225d

Browse files
committed
adjust comment
1 parent 9a560b9 commit 1e5225d

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/checks.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@ check_if_writable()
2626

2727
check_if_file_readable()
2828
{
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
29+
# checks if the given file exists and is readable
3230
file=$1
3331
if [ -e "${file}" ]; then
3432
if [ -r "${file}" ]; then

0 commit comments

Comments
 (0)