summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/license/finder/ext.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/license/finder/ext.rb b/lib/license/finder/ext.rb
index 91bf297..29db253 100644
--- a/lib/license/finder/ext.rb
+++ b/lib/license/finder/ext.rb
@@ -26,7 +26,7 @@ module LicenseFinder
class Cmd
def self.run(command)
stdout, stderr, status = Open3.capture3(command)
- puts stdout unless ENV['LM_DEBUG'].nil? || ENV['LM_DEBUG'].empty?
+ puts stdout if ENV['CI_DEBUG_TRACE'] == 'true'
[stdout, stderr, status]
end
end