We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2017f16 commit 69e0551Copy full SHA for 69e0551
test-svn.sh
@@ -5,14 +5,14 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
5
svn --help > /dev/null || { echo "Fail: could not find 'svn' executable"; exit 1; }
6
svnadmin --help > /dev/null || { echo "Fail: could not find 'svnadmin' executable"; exit 1; }
7
8
-trap cleanup INT
+trap cleanup INT ERR
9
10
function cleanup() {
11
cd "$DIR/test-data"
12
rm -rf proj proj-working svnrepo
13
}
14
15
-set -ex
+set -eEx
16
17
cd test-data
18
@@ -32,7 +32,7 @@ cd proj-working/trunk
32
../../../composer-lock-diff
33
34
cd ..
35
-../../composer-lock-diff -p trunk/
+../../composer-lock-diff -p trunk
36
37
38
0 commit comments