bin: Simplify while loop condition
This commit is contained in:
parent
57237b8568
commit
2f76066d95
1 changed files with 1 additions and 2 deletions
|
@ -36,8 +36,7 @@ fi
|
|||
[ -n "${LOG}" ] || fatal "Set a logfile as the first parameter"
|
||||
|
||||
shift
|
||||
while [ 1 ]
|
||||
do
|
||||
while true; do
|
||||
# Try to touch the file if it doesn't exist
|
||||
[ -f "${LOG}" ] || touch "${LOG}" || fatal "Logfile '${LOG}' is not writeable"
|
||||
|
||||
|
|
Loading…
Reference in a new issue