diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-08-16 23:57:21 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-08-17 09:41:58 +0200 |
commit | 070254c2a129d8e35bbdb37d38f90fec03490182 (patch) | |
tree | 77beefb5a42f4dcaf535a4b9975d119d0e01083e /solenv/bin | |
parent | f5f235051055d24c8aced602078c54261603efea (diff) |
Print (raw) exit code on system() failure
Change-Id: I5d99319aa336c02dc0c20ab2bc3a1302840d100d
Reviewed-on: https://gerrit.libreoffice.org/59242
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'solenv/bin')
-rw-r--r-- | solenv/bin/modules/installer/simplepackage.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/simplepackage.pm b/solenv/bin/modules/installer/simplepackage.pm index 30f41e43f6ff..f5337e59dc18 100644 --- a/solenv/bin/modules/installer/simplepackage.pm +++ b/solenv/bin/modules/installer/simplepackage.pm @@ -457,7 +457,7 @@ sub create_package if ($returnvalue) { - $infoline = "ERROR: Could not execute \"$systemcall\"!\n"; + $infoline = "ERROR: Could not execute \"$systemcall\": $returnvalue\n"; push( @installer::globals::logfileinfo, $infoline); } else |