1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-01-04 04:07:16 +02:00

Suspress output from cd -

This commit is contained in:
Marcus Holl 2019-02-27 13:06:41 +01:00
parent caa5c588c5
commit 0a6064745c

View File

@ -25,6 +25,6 @@ docker run -v /var/run/docker.sock:/var/run/docker.sock -v "${PWD}":/workspace -
RC=$?
cd - || { echo "[ERROR] change directory back into integration test root folder failed."; exit 1; }
cd - &> /dev/null || { echo "[ERROR] change directory back into integration test root folder failed."; exit 1; }
[ "${RC}" == 0 ] && touch "${TEST_CASE_ROOT}/SUCCESS"