summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorRyan Davis <ryand@zenspider.com>2013-02-27 16:14:46 -0800
committerRyan Davis <ryand@zenspider.com>2013-02-27 16:14:46 -0800
commit60d33c395604fbb600c839eb53b8d08ecefd9f66 (patch)
tree7ad210fb47a35ba85b05564e5f07ba81db530ea4 /bin
parenta5ccee9b81186723ff6c26752b3ec05e540fb0f6 (diff)
downloadhoe-60d33c395604fbb600c839eb53b8d08ecefd9f66.tar.gz
- 1.9: fixed warning of ambiguous args in bin/sow. (amesee)
[git-p4: depot-paths = "//src/hoe/dev/": change = 8277]
Diffstat (limited to 'bin')
-rwxr-xr-xbin/sow2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/sow b/bin/sow
index 7e2939c..74db98f 100755
--- a/bin/sow
+++ b/bin/sow
@@ -123,7 +123,7 @@ Dir.chdir project do
when /^test/ then
dir, *rest = new_file.split File::SEPARATOR
- rest.last.sub! /^/, 'test_'
+ rest.last.sub!(/^/, 'test_')
new_file = File.join dir, *rest
end