summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorRyan Davis <ryand@zenspider.com>2008-09-22 22:30:21 -0800
committerRyan Davis <ryand@zenspider.com>2008-09-22 22:30:21 -0800
commit6f5471bd215fbd6d227709a80397c25610a77fb3 (patch)
treec536c47a426ff2ec0d914da526ed3b82c2aa9122 /bin
parent30854e5c0933df470ed1fb699726991499a5d89e (diff)
downloadhoe-6f5471bd215fbd6d227709a80397c25610a77fb3.tar.gz
Removed optional group. Never used it anyhow.
[git-p4: depot-paths = "//src/hoe/dev/": change = 4214]
Diffstat (limited to 'bin')
-rwxr-xr-xbin/sow5
1 files changed, 1 insertions, 4 deletions
diff --git a/bin/sow b/bin/sow
index ac32706..27d5c65 100755
--- a/bin/sow
+++ b/bin/sow
@@ -4,18 +4,15 @@ $t ||= false
$d ||= false
if defined? $h then
- puts "usage: #{File.dirname($0)} [-d|-t] [group] project"
+ puts "usage: #{File.dirname($0)} [-d|-t] project"
puts " -t = add project to subdir under 'trunk'"
puts " -d = add project to subdir under 'dev'"
end
abort "You must specify only one of -t or -d" if $t and $d
-group = ARGV.shift
project = ARGV.shift
-project ||= group
-
# prevents false positives on my tag reporter
X = 'FI' + 'X'