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
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
lyz
backupninja
Commits
4dc5c344
Commit
4dc5c344
authored
16 years ago
by
intrigeri
Browse files
Options
Downloads
Patches
Plain Diff
Fixed tr construct reporting a warning (Closes: #452669).
parent
c18c24b4
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChangeLog
+1
-0
1 addition, 0 deletions
ChangeLog
src/backupninja.in
+1
-1
1 addition, 1 deletion
src/backupninja.in
with
2 additions
and
1 deletion
ChangeLog
+
1
−
0
View file @
4dc5c344
...
...
@@ -3,6 +3,7 @@ version 0.9.6 -- unreleased
. fix bug in cstream definition, thanks Jamie McClelland
. Allow the entire backup run to be halted by an action, thanks to
Matthew Palmer (Closes: #455836)
. Fixed tr construct reporting a warning (Closes: #452669)
handler changes
dup:
. General cleanup
...
...
This diff is collapsed.
Click to expand it.
src/backupninja.in
+
1
−
1
View file @
4dc5c344
...
...
@@ -180,7 +180,7 @@ function check_perms() {
# simple lowercase function
function
tolower
()
{
echo
"
$1
"
|
tr
[
:upper:]
[
:lower:]
echo
"
$1
"
|
tr
'
[:upper:]
'
'
[:lower:]
'
}
# simple to integer function
...
...
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