Skip to content

Commit

Permalink
FIX shebang (#110)
Browse files Browse the repository at this point in the history
As rubocop added the `frozen_string_literal` on top of the executable,
the shebang was not read anymore. That was just an issue on local
development, but still an issue.
  • Loading branch information
MaximeD authored Jun 29, 2020
1 parent a318392 commit 4091d43
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/gem_update
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env ruby

# frozen_string_literal: true

#!/usr/bin/env ruby
require 'optparse'

# Exit cleanly from an early interrupt
Expand Down

0 comments on commit 4091d43

Please sign in to comment.