diff options
-rw-r--r-- | changelog | 6 | ||||
-rwxr-xr-x | opkg | 4 |
2 files changed, 9 insertions, 1 deletions
@@ -1,5 +1,11 @@ opkg-lede (0+git20190131.d4ba162-8) trunk + * opkg-lede: Fix exit status when "/usr/bin/opkg-cl" fails. + + -- Patrick McDermott <patrick.mcdermott@libiquity.com> Mon, 25 Sep 2023 06:49:51 -0400 + +opkg-lede (0+git20190131.d4ba162-8) trunk + * opkg-lede: Fix a "cat: not found" error when "/usr/bin/opkg" is run during a system installation. @@ -63,6 +63,7 @@ main() local first_arg= local arch_arg= local arg= + local es= first_arg=true arch_arg='' @@ -125,8 +126,9 @@ main() unsave_bb return 0 else + es=${?} unsave_bb - return ${?} + return ${es} fi } |