Update launch.script so popd does not print directory name to stdout

Closes gh-5394
This commit is contained in:
Christian Brunotte
2016-03-13 03:30:30 +01:00
committed by Andy Wilkinson
parent 0f6b76cf7b
commit 677080b8e2

View File

@@ -217,7 +217,7 @@ run() {
pushd "$(dirname "$jarfile")" > /dev/null
$command
result=$?
popd
popd > /dev/null
return "$result"
}