On 27.09.2016 12:59, Dario Niedermann wrote: > I found out that the issue was in the script's shebang: > > #!/bin/bash -e > > which wouldn't work. Had to remove ' -e'. Is this expected behaviour or > is there something wrong with svn (version 1.9.4 (r1740329) on > Linux/x86_64) ?
Why would anything be wrong with Subversion? Apparently something is not going as expected in your own script, causing bash to exit. Scripts always have to be adapted to local needs. On some systems, the path for bash might be different, or bash might not be available at all. That's each user's own responsibility. -Ralph
