From 7fa93699d44e29afb15ceb400cbf48ab59dec2fa Mon Sep 17 00:00:00 2001 From: Pierre Labastie Date: Wed, 24 Apr 2019 15:07:04 +0000 Subject: [PATCH] Fix a long standing bug in func_compare.sh: The files in test-logs have the package version in their names --- common/libs/func_compare.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/libs/func_compare.sh b/common/libs/func_compare.sh index b204976..605eb6c 100644 --- a/common/libs/func_compare.sh +++ b/common/libs/func_compare.sh @@ -125,7 +125,7 @@ wrt_logs() { # @if [ -d test-logs ] ; then \\ cd test-logs && \\ mkdir $build && \\ - mv -f ${system_build} $build && \\ + mv -f `echo ${system_build} | sed 's/ /* /g'`* $build && \\ if [ ! $build = build_1 ] ; then \\ cd $build && \\ for file in \`ls .\` ; do \\