Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
backupninja
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Liberate
backupninja
Commits
5f6dc7d1
Commit
5f6dc7d1
authored
19 years ago
by
micah
Browse files
Options
Downloads
Patches
Plain Diff
Fixed bug in rdiff.helper that kept include and exclude lines from being put in the file
parent
f61431d3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
handlers/rdiff.helper
+3
-3
3 additions, 3 deletions
handlers/rdiff.helper
with
3 additions
and
3 deletions
handlers/rdiff.helper
+
3
−
3
View file @
5f6dc7d1
...
...
@@ -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_
in
cludes[@]} ; i++)); do
echo exclude = ${rdiff_excludes[$i]}
for ((i=0; i < ${#rdiff_
ex
cludes[@]} ; i++)); do
echo exclude = ${rdiff_excludes[$i]}
>> $next_filename
done
set +o noglob
cat >> $next_filename <<EOF
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment