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)
committerLucas Gass <lucas@bywatersolutions.com>
Tue, 13 Jun 2023 16:27:43 +0000 (16:27 +0000)
commit9f8b34e8d6b28400e38b89301cb72e0c31920c40
treef8cad28f9239ac3211bd0185312b90e58983b907
parentd0b05432a85c380df72e9e6ffefe37573944a658
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>
(cherry picked from commit ef3985df0673304117f8c90fc673482d81410c06)
Signed-off-by: Lucas Gass <lucas@bywatersolutions.com>
debian/scripts/koha-foreach