summaryrefslogtreecommitdiff
path: root/import/rubygem.to_chunk
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2014-09-01 17:01:29 +0100
committerSam Thursfield <sam.thursfield@codethink.co.uk>2014-09-01 17:01:29 +0100
commit1d58cf3206bc5e288986649e4258bbc6bddb3ead (patch)
treedabe142892c2b49461fc2ca4c21acaef0b9a6b0a /import/rubygem.to_chunk
parent768e839e361760e5e5660aaff889ea22ed445a04 (diff)
downloadmorph-1d58cf3206bc5e288986649e4258bbc6bddb3ead.tar.gz
import: Fix logging in plugins
Diffstat (limited to 'import/rubygem.to_chunk')
-rwxr-xr-ximport/rubygem.to_chunk4
1 files changed, 3 insertions, 1 deletions
diff --git a/import/rubygem.to_chunk b/import/rubygem.to_chunk
index 7156c9d3..9e802e73 100755
--- a/import/rubygem.to_chunk
+++ b/import/rubygem.to_chunk
@@ -62,7 +62,9 @@ BUILD_DEPENDENCY_WHITELIST = [
# recommended here:
# <https://stackoverflow.com/questions/1681745/share-global-logger-among-module-classes>
#
-log_file = ENV['BASEROCK_IMPORT_LOG'] or '/dev/null'
+log_file = ENV['BASEROCK_IMPORT_LOG'] || '/dev/null'
+
+if log_file.length == 0 then log_file = '/dev/null' end
Log = Logger.new(log_file)