Skip to content

Commit

Permalink
Change to keep strings consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrmurach committed Oct 22, 2017
1 parent dc76adf commit 1ba803a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exe/teletype
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/usr/bin/env ruby
# frozen_string_literal: true

lib_path = File.expand_path("../lib", __dir__)
lib_path = File.expand_path('../lib', __dir__)
$:.unshift(lib_path) if !$:.include?(lib_path)
require 'tty/cli'

Signal.trap("INT") do
Signal.trap('INT') do
warn("\n#{caller.join("\n")}: interrupted")
exit(1)
end
Expand Down

0 comments on commit 1ba803a

Please sign in to comment.