mirror of
https://github.com/alexkurowski/solo-toolkit.git
synced 2026-07-22 05:11:44 +00:00
Update
This commit is contained in:
parent
78ac40301f
commit
c2f1994ff7
1 changed files with 2 additions and 3 deletions
|
|
@ -2,12 +2,11 @@ require 'json'
|
|||
|
||||
def sh(cmd)
|
||||
puts cmd
|
||||
`#{cmd}`
|
||||
puts `#{cmd}`
|
||||
end
|
||||
|
||||
manifest = JSON.parse File.read 'manifest.json'
|
||||
|
||||
version = manifest['version']
|
||||
|
||||
sh "git tag -a #{version} -m "#{version}""
|
||||
sh "git tag -a #{version} -m \"#{version}\""
|
||||
sh "git push origin #{version}"
|
||||
|
|
|
|||
Loading…
Reference in a new issue