bin/hotwired in hotwired-0.0.1 vs bin/hotwired in hotwired-0.0.2

- old
+ new

@@ -1,11 +1,10 @@ #!/usr/bin/env ruby # frozen_string_literal: true begin require_relative "../lib/hotwired/cli" - Hotwired::CLI.new.run -rescue StoreError => error - warn "#{error}" +rescue StandardError => e + warn e.to_s raise if Hotwired::CFG.debug end