diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2022-03-23 19:38:30 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2022-03-23 19:38:30 +0100 |
commit | 74cf6a026e13a6e275d37bc17014908a76b41042 (patch) | |
tree | c8770ecca0dadd466b38e2dae8c70ac537079380 /sfeed_update | |
parent | 70426c5b55dd9d1f96860644d868fb3399e5a4df (diff) |
shellscripts: use [ for test consistently
Diffstat (limited to 'sfeed_update')
-rwxr-xr-x | sfeed_update | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfeed_update b/sfeed_update index b9880c3..2e54a59 100755 --- a/sfeed_update +++ b/sfeed_update @@ -213,7 +213,7 @@ main() { # wait till all feeds are fetched (concurrently). [ ${signo} -eq 0 ] && wait # check error exit status indicator for parallel jobs. - test -f "${sfeedtmpdir}/ok" + [ -f "${sfeedtmpdir}/ok" ] status=$? # cleanup temporary files etc. cleanup |