Skip to content
Snippets Groups Projects
Commit 5f6dc7d1 authored by micah's avatar micah :speech_balloon:
Browse files

Fixed bug in rdiff.helper that kept include and exclude lines from being put in the file

parent f61431d3
Branches
Tags
No related merge requests found
......@@ -189,10 +189,10 @@ keep = $rdiff_keep
EOF
set -o noglob
for ((i=0; i < ${#rdiff_includes[@]} ; i++)); do
echo include = ${rdiff_includes[$i]}
echo "include = ${rdiff_includes[$i]}" >> $next_filename
done
for ((i=0; i < ${#rdiff_includes[@]} ; i++)); do
echo exclude = ${rdiff_excludes[$i]}
for ((i=0; i < ${#rdiff_excludes[@]} ; i++)); do
echo exclude = ${rdiff_excludes[$i]} >> $next_filename
done
set +o noglob
cat >> $next_filename <<EOF
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment