I get :
ERROR: Cannot make test comTsLdap::TestLdap sys::ArgErr: Invalid Uri scheme for local file: fan://comTsLdap/res/prop.txt
I thought it should work according to the docs:
f := File(`fan://${this.typeof.pod.name}/res/prop.txt`)
I changed it to use a file like this:
File propsFile := this.typeof.pod.file(`/res/prod.properties`)
That Works.
File.make docs explicitly say that make throws ArgErr if its not file://... URI.
make
ArgErr
file://...
File f := `fan://comTsLdap/res/prop.txt`.get
is what you probably meant.
Login or Signup to reply.
tcolar Tue 26 Apr 2011
I get :
I thought it should work according to the docs:
tcolar Tue 26 Apr 2011
I changed it to use a file like this:
That Works.
vkuzkokov Tue 26 Apr 2011
File.make docs explicitly say that
make
throwsArgErr
if its notfile://...
URI.is what you probably meant.