Skip to content

Commit

Permalink
fix: ruby shebang (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks authored Jul 4, 2024
1 parent 6e36e96 commit d14ca4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/get_highest_tag.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/ruby
#!/usr/bin/env ruby
# gets the tag with the highest semver number
# - "highest" is preferred over "latest", because of backports to old tags may
# cause them to be "later" than "higher" tags
Expand Down
2 changes: 1 addition & 1 deletion bin/is_a_tag.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/ruby
#!/usr/bin/env ruby
# check if a given tag is available in a repo; exit 0 if yes, 1 if no

unless ARGV.length == 2
Expand Down

0 comments on commit d14ca4d

Please sign in to comment.