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
No related branches found
No related tags found
No related merge requests found
......@@ -148,7 +148,7 @@ function tolower() {
# simple to integer function
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.
Finish editing this message first!
Please register or to comment