diff options
author | Ralph Amissah <ralph@amissah.com> | 2010-06-01 18:32:03 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2010-06-01 18:32:05 -0400 |
commit | 506bddedd27dd01954402677b053c4c7f6a72e4f (patch) | |
tree | 9d485924e2562f7ef44e5df7165084e8f458828c /lib | |
parent | texpdf, start using polyglossia (xelatex) (instead of babel) (diff) |
remote file processing fix (url instead of local file), minor fix
(related to reporting "http" file not found)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/sisu/v2/hub.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/sisu/v2/hub.rb b/lib/sisu/v2/hub.rb index b182a31e..443d0734 100644 --- a/lib/sisu/v2/hub.rb +++ b/lib/sisu/v2/hub.rb @@ -156,7 +156,10 @@ module SiSU else #print "not processed --> ", fns, "\n" end else - Operations.new(@opt).not_found unless @req =~/^conf$/ + if @req !~/^conf$/ \ + and @opt.fns !~/http:\/\// + Operations.new(@opt).not_found + end end elsif FileTest.file?(put) if @opt.mod.inspect !~/harvest/ #decide whether should permit harvest in single operation |