Skip to content

Commit

Permalink
make done compiling message more visible (#1606) (#1653)
Browse files Browse the repository at this point in the history
  • Loading branch information
skojin authored Jan 24, 2022
1 parent 4b65f5c commit 48d8f7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/watch.cr
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ module LuckySentry
def restart_app
build_in_progress = @build_processes.any?(&.exists?)
stop_all_processes
puts build_in_progress ? "Recompiling..." : "Compiling..."
puts build_in_progress ? "Recompiling..." : "\nCompiling..."
build_app_processes_and_start
end

Expand All @@ -176,7 +176,7 @@ module LuckySentry
if build_success
self.app_built = true
create_app_processes()
puts "Done compiling"
puts "#{" Done ".colorize.on_cyan.black} compiling"
elsif !app_built
print_error_message
end
Expand Down

0 comments on commit 48d8f7b

Please sign in to comment.