Skip to content

Commit

Permalink
Fix Debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
greeneca committed Oct 6, 2016
1 parent 08b56b9 commit 0933ab1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions lib/roku_builder/monitor.rb
Expand Up @@ -42,9 +42,9 @@ def monitor(type:)
end
}
running = true
@logger.unknown "Q to exit"
while running
begin
@logger.unknown "Q to exit"
command = gets.chomp
case command
when "q"
Expand All @@ -70,9 +70,9 @@ def monitor(type:)
def manage_text(all_text:, txt:)
all_text += txt
while line = all_text.slice!(/^.*\n/) do
puts line
puts line if !line.strip.empty?
end
if all_text == "BrightScript Debugger> "
if all_text.downcase == "BrightScript Debugger> ".downcase
print all_text
all_text = ""
end
Expand Down
2 changes: 1 addition & 1 deletion lib/roku_builder/version.rb
Expand Up @@ -2,5 +2,5 @@

module RokuBuilder
# Version of the RokuBuilder Gem
VERSION = "3.10.3"
VERSION = "3.10.4"
end

0 comments on commit 0933ab1

Please sign in to comment.