Bug 33645: Make koha-foreach return 0 if it completes successfully
authorDavid Cook <dcook@prosentient.com.au>
Tue, 2 May 2023 00:16:30 +0000 (00:16 +0000)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Fri, 12 May 2023 15:22:47 +0000 (16:22 +0100)
commitef3985df0673304117f8c90fc673482d81410c06
tree6986d7e5874cd8560a1b7bd33972e5bc800585f8
parentf5967ca2de582c6d002100574535f6985e3a3d50
Bug 33645: Make koha-foreach return 0 if it completes successfully

This patch adds an "exit 0" to the end of koha-foreach, so that it
returns a successful exit code if it reaches the bottom of the script
without errors.

Test plan:
0) `koha-foreach echo`
1) `echo $?`
2) Note that the exit status is 1
3) Apply patch
4) `./debian/scripts/koha-foreach echo`
5) `echo $?`
6) Note that the exit status is 0

Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
(cherry picked from commit e8a187eb7422419592899ea12903f9ff29f96cfd)
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
debian/scripts/koha-foreach