Skip to content

Commit bee16a8

Browse files
committed
Fix rake release
1 parent b2b3ada commit bee16a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ end
119119

120120
desc "Create and push tag"
121121
task :tag do
122-
version = File.read("VERSION")
123-
sh "git tag -a #{version} -m Release #{version}"
122+
version = File.read("VERSION").strip
123+
sh "git tag -a #{version} -m 'Release #{version}'"
124124
sh "git push --tags"
125125
end
126126

0 commit comments

Comments
 (0)