remove the __pycache__ dirs from comparison analysis
This commit is contained in:
parent
bdb0761120
commit
31a9b1440c
1 changed files with 3 additions and 1 deletions
|
@ -61,9 +61,11 @@ wrt_compare_work() { #
|
||||||
|
|
||||||
if [[ "$RUN_ICA" = "y" ]] ; then
|
if [[ "$RUN_ICA" = "y" ]] ; then
|
||||||
local DEST_ICA=$DEST_TOPDIR/ICA && \
|
local DEST_ICA=$DEST_TOPDIR/ICA && \
|
||||||
|
# the PRUNEPATH additional setting is to avoid .pyc files to show up in diff
|
||||||
(
|
(
|
||||||
cat << EOF
|
cat << EOF
|
||||||
@extras/do_copy_files "$PRUNEPATH" $ROOT_DIR $DEST_ICA/$ITERATION >>logs/\$@ 2>&1 && \\
|
@PRUNEPATH="$PRUNEPATH \$\$(find /usr/lib -name __pycache__)"; \\
|
||||||
|
extras/do_copy_files "\$\$PRUNEPATH" $ROOT_DIR $DEST_ICA/$ITERATION >>logs/\$@ 2>&1 && \\
|
||||||
extras/do_ica_prep $DEST_ICA/$ITERATION >>logs/\$@ 2>&1
|
extras/do_ica_prep $DEST_ICA/$ITERATION >>logs/\$@ 2>&1
|
||||||
EOF
|
EOF
|
||||||
) >> $MKFILE.tmp
|
) >> $MKFILE.tmp
|
||||||
|
|
Reference in a new issue