mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-20 15:36:16 -04:00
fixed a little bug in runSafe
This commit is contained in:
parent
d9084bd8a2
commit
73e9ef18a9
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ while [ 1 ]
|
|||
do
|
||||
#try to touch the file if it doesn't exist
|
||||
if [ ! -f $1 ]; then
|
||||
touch $1 || echo "Logfile '$1' is not writeable" && exit 1
|
||||
touch $1 || ( echo "Logfile '$1' is not writeable" && exit 1 )
|
||||
fi
|
||||
|
||||
#check if the file is writeable
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue