diff options
author | elijah <elijah@riseup.net> | 2012-10-14 03:02:06 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2012-10-14 03:02:06 -0700 |
commit | c6d2272ddb370b9731e17b06fa08971e6cda5202 (patch) | |
tree | 492931f6b62088062ae070814ec714bcbd1f0707 /lib/leap_cli/path.rb | |
parent | cde5fc17fe235405703c67184c81d85643b257a2 (diff) |
added add-user command
Diffstat (limited to 'lib/leap_cli/path.rb')
-rw-r--r-- | lib/leap_cli/path.rb | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/leap_cli/path.rb b/lib/leap_cli/path.rb index 5dc8fe8..f3cbad9 100644 --- a/lib/leap_cli/path.rb +++ b/lib/leap_cli/path.rb @@ -36,16 +36,6 @@ module LeapCli raise "No such directory '#{@root}'" unless File.directory?(@root) end - def self.ensure_dir(dir) - unless File.directory?(dir) - if File.exists?(dir) - raise 'Unable to create directory "%s", file already exists.' % dir - else - FileUtils.mkdir_p(dir) - end - end - end - def self.find_file(name, filename) path = [Path.files, filename].join('/') return path if File.exists?(path) |