1. 04 Apr, 2013 5 commits
  2. 03 Apr, 2013 5 commits
  3. 01 Apr, 2013 7 commits
  4. 31 Mar, 2013 5 commits
  5. 30 Mar, 2013 9 commits
  6. 29 Mar, 2013 6 commits
  7. 28 Mar, 2013 2 commits
  8. 27 Mar, 2013 1 commit
    • replaced && by || · ba2582ff
      In the example, you want /bin/true to be executed if the first command has an error return code. Combining command with && will run the second only if the first is successful. Combining them with ||, the second will be run only of the first fails, what is wanted here.
      raphinou committed