Skip to content

Commit db1e062

Browse files
authored
Merge pull request #27 from duckinator/fix-note
fix release notes to show the basename of packed_file
2 parents 2a066ab + 3022f07 commit db1e062

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
jim (1.0.0b2)
4+
jim (1.0.0b3)
55

66
GEM
77
remote: https://rubygems.org/

lib/jim/cli.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ def self.release
196196
abort "error: Expected spec.metadata[\"github_repo\"] to be of the format \"https://github.com/owner/repo\", got #{github_repo.inspect}"
197197
end
198198

199-
note = "If you want a self-contained executable, use the packed #{packed_file} file." if packed_file
199+
note = "If you want a self-contained executable, use the packed #{File.basename(packed_file)} file." if packed_file
200200

201201
files = []
202202
files << packed_file if packed_file

lib/jim/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Jim
4-
VERSION = "1.0.0b2"
4+
VERSION = "1.0.0b3"
55
end

0 commit comments

Comments
 (0)