
Permit use of Git while still supporting Subversion. Improve the script structure and reduce dependence on hard-coded paths.
15 lines
431 B
Ruby
Executable file
15 lines
431 B
Ruby
Executable file
#! /usr/bin/ruby
|
|
|
|
=begin
|
|
--------------------------------------------------------------------------------
|
|
|
|
What is the currently-selected version?
|
|
|
|
--------------------------------------------------------------------------------
|
|
--------------------------------------------------------------------------------
|
|
=end
|
|
|
|
require File.expand_path('subscripts/common', File.dirname(__FILE__))
|
|
|
|
puts "Current version is #{@version_name}"
|
|
|