1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00

Remove duplicate tag command from release task

This commit is contained in:
Zachary Scott 2016-04-12 10:42:28 +09:00
parent 8f5f1101b2
commit ac9eb853d2

View file

@ -57,7 +57,6 @@ task :release => :gemspec do
gem push sinatra-contrib*.gem &&
git commit --allow-empty -a -m '#{Sinatra::Contrib::VERSION} release' &&
git tag -s v#{Sinatra::Contrib::VERSION} -m '#{Sinatra::Contrib::VERSION} release' &&
git tag -s #{Sinatra::Contrib::VERSION} -m '#{Sinatra::Contrib::VERSION} release' &&
git push && (git push origin master || true) &&
git push --tags && (git push origin --tags || true)
SH