Skip to content
Snippets Groups Projects
  1. Sep 05, 2013
  2. Sep 04, 2013
  3. Sep 03, 2013
  4. Aug 02, 2013
  5. Aug 01, 2013
  6. Jul 30, 2013
  7. Jul 29, 2013
  8. Jul 26, 2013
  9. Jul 25, 2013
  10. Jul 23, 2013
  11. Jul 22, 2013
  12. Jul 19, 2013
  13. Jul 16, 2013
  14. Jul 12, 2013
  15. Jul 10, 2013
    • Natanael Copa's avatar
      abump: fix set -e issue · e1d629b6
      Natanael Copa authored
      It appears that when the subshell has a ||, the 'set -e' within
      subshell gets invalidated.
      
      This will work as expected:
      
       ( set -e; false; echo "should not get here" )
      
      While this will not work as expected:
      
       ( set -e; false; echo "should not get here" ) || false
      
      We resolve it by using $? to detect the status of subshell. We also let
      the exitcode indicate how many packages that failed.
      
      While here we also refactor it so most of the loop happens within the
      subshell. This lets us set (or increase) rc variable once, and it
      reduces number of forks which gives slightly better performance.
      e1d629b6
    • Natanael Copa's avatar
      Revert "abump: verify APKBUILD's version" · 5021e13f
      Natanael Copa authored
      We actually want be able to re-run abump without needing reset the
      pkgver in case we had to fix things.
      
      This reverts commit 8198ded8.
      
      Conflicts:
      	abump.in
      5021e13f
    • Natanael Copa's avatar
  16. Jul 09, 2013
Loading