Skip to content
Snippets Groups Projects
Commit 01c96765 authored by Ralf Mueller's avatar Ralf Mueller
Browse files

rake task to list git tags

parent e77d8a64
No related branches found
No related tags found
No related merge requests found
......@@ -91,6 +91,8 @@ def executeRemote(command, builder)
ssh.loop
end
end
def executeRemoteSimple
end
#
# execution wrapper
def execute(command, builder)
......@@ -337,6 +339,12 @@ task :tags do |t|
sh "ctags #{ctagsOutputMode} #{srcFiles.join(' ')}"
}
end
# build tags
task :tagList do
`git tag -l`.split.each {|tag|
puts tag
}
end
# check connections {{{
task :checkConnections do |t|
pp Parallel.map(@userConfig["hosts"]) {|host, config|
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment