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

Fixed broken toint function, causes backups to not run from cron

when told to run "everyday" (debian bug: #341881)
parent 921babdf
Branches
Tags
No related merge requests found
...@@ -148,7 +148,7 @@ function tolower() { ...@@ -148,7 +148,7 @@ function tolower() {
# simple to integer function # simple to integer function
function toint() { function toint() {
echo "$1" | tr [:alpha:] -d echo "$1" | tr -d [:alpha:]
} }
# #
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment