summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-03-07 16:15:24 -0700
committermo khan <mo.khan@gmail.com>2020-03-07 16:15:24 -0700
commitcf743516437ca5b27320b837861867cd4ee28838 (patch)
tree29ea9d12a03dfc4a6897cac9d0ea2463ddbe820a /lib
parent5ffb2e6b2188fd2793420a23d826a5f0684862c2 (diff)
Rename LM_DEBUG to CI_DEBUG_TRACE
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