Skip to content
Snippets Groups Projects
Commit 86aac09d authored by Karl-Hermann Wieners's avatar Karl-Hermann Wieners
Browse files

Fixed diff tool for experiments to ignore script backups

parent 5130e7af
No related branches found
No related tags found
No related merge requests found
......@@ -51,8 +51,8 @@ DIFF_FILE=`mktemp`
for FILE_A in $(
{
(cd "$PATH_A" && find . ! -type d ! -name '*.log')
(cd "$PATH_B" && find . ! -type d ! -name '*.log' | sed "s,$EXP_B,$EXP_A,g")
(cd "$PATH_A" && find . ! -type d ! -name '*.log' ! -path '*/backup/*' )
(cd "$PATH_B" && find . ! -type d ! -name '*.log' ! -path '*/backup/*' | sed "s,$EXP_B,$EXP_A,g")
} | sed 's,^\./,,' | sort -u
)
do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment