diff options
-rw-r--r-- | lib/gitlab/popen.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/gitlab/popen.rb b/lib/gitlab/popen.rb index 369d6cc1f5d..5283cf0b821 100644 --- a/lib/gitlab/popen.rb +++ b/lib/gitlab/popen.rb @@ -1,4 +1,3 @@ - require 'fileutils' module Gitlab @@ -8,7 +7,7 @@ module Gitlab options = { chdir: path } unless File.directory?(path) - FileUtils.mkdir_p(path) + FileUtils.mkdir_p(path) end @cmd_output = "" |