Skip to content

Commit d14ca4d

Browse files
authored
fix: ruby shebang (#128)
1 parent 6e36e96 commit d14ca4d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bin/get_highest_tag.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/ruby
1+
#!/usr/bin/env ruby
22
# gets the tag with the highest semver number
33
# - "highest" is preferred over "latest", because of backports to old tags may
44
# cause them to be "later" than "higher" tags

bin/is_a_tag.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/ruby
1+
#!/usr/bin/env ruby
22
# check if a given tag is available in a repo; exit 0 if yes, 1 if no
33

44
unless ARGV.length == 2

0 commit comments

Comments
 (0)