Maven migration (first draft)
This commit is contained in:
parent
da79ac3e1d
commit
fee48b0b50
1711 changed files with 662 additions and 0 deletions
21
legacy/utilities/LoadTesting/scripts/_status
Executable file
21
legacy/utilities/LoadTesting/scripts/_status
Executable file
|
@ -0,0 +1,21 @@
|
|||
#! /usr/bin/ruby
|
||||
|
||||
=begin
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
Show the SVN status of the currently-selected distro, both VIVO and Vitro.
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
--------------------------------------------------------------------------------
|
||||
=end
|
||||
|
||||
require File.expand_path('subscripts/common', File.dirname(__FILE__))
|
||||
|
||||
if (@is_git)
|
||||
Dir.chdir(distro_file('Vitro')) { |path| system "svn status -u" }
|
||||
Dir.chdir(distro_file('VIVO')) { |path| system "svn status -u" }
|
||||
else
|
||||
Dir.chdir(distro_file('vitro')) { |path| system "svn status -u" }
|
||||
Dir.chdir(distro_file('vivo')) { |path| system "svn status -u" }
|
||||
end
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue