summaryrefslogtreecommitdiff
path: root/lognotify.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lognotify.rb')
-rwxr-xr-xlognotify.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lognotify.rb b/lognotify.rb
index bebc9a3..6a1430b 100755
--- a/lognotify.rb
+++ b/lognotify.rb
@@ -33,7 +33,7 @@
# altered, an error will be produced and the script will exit.
require 'digest/md5'
-require 'ftools'
+require 'fileutils'
require 'open3'
# Global settings.
@@ -117,7 +117,7 @@ STDOUT.sync = true
# Create cache directory, if nonexistent.
path = File.expand_path(CACHE_DIR)
-File.makedirs(path) unless File.directory?(path)
+FileUtils.mkpath(path) unless File.directory?(path)
# Treat each argument as a log identifier.
ARGV.each do |identifier|