Skip to content

Commit

Permalink
[backend] Require file utils module in cloud uploader script
Browse files Browse the repository at this point in the history
Fixes uninitialized constant issue caused by recent changes
(e023f17).

/usr/lib/obs/server/clouduploader:25:in `<main>': uninitialized constant FileUtils (NameError)
  • Loading branch information
bgeuken committed Feb 26, 2018
1 parent 8a8b26f commit b064cfa
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dist/clouduploader.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/usr/bin/ruby

require 'fileutils'
require 'json'
require 'ostruct'
require 'open3'
Expand Down

0 comments on commit b064cfa

Please sign in to comment.