From 94a19a4c5451f321fa24152ff7f7122925201d86 Mon Sep 17 00:00:00 2001 From: Marco Capetta Date: Thu, 9 Aug 2018 09:56:18 +0200 Subject: [PATCH] TT#42150 Fix typo in added in commit 66810f2c66 Change-Id: Iaa91c3a95ba824f1a3e5b99ddaa42645179afdc2 --- bin/check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/check.sh b/bin/check.sh index e908eb32..e9d290fa 100755 --- a/bin/check.sh +++ b/bin/check.sh @@ -704,7 +704,7 @@ if ! "$SKIP_RUNSIPP" ; then if [ -d "${JSON_DIR}" ] ; then for i in "${JSON_DIR}"/*.json ; do json_size_before=$(stat -c%s "${i}") - moved_file="${LOG_DIR}\/$(printf "%04d.json" "$(basename "$i" .json)")" + moved_file="${LOG_DIR}/$(printf "%04d.json" "$(basename "$i" .json)")" expand -t1 "$i" > "${moved_file}" json_size_after=$(stat -c%s "${moved_file}") echo "$(date) - Moved file ${i} with size before: ${json_size_before} and after: ${json_size_after}"