I tried to add outPodDir=`lib` in the build.fan script. The build passed, an empty lib directory appeared along with a hello.pod in the project directory. But there is no way to use it, because it is not properly installed.
Is there a way to specify an alternate directory for the pods?
KPNC Thu 7 Feb 2013
I've installed Fantom using
brew
on OSX. Then I followed the Fantom pods tutorialThe build failed:
The reason is that
brew
was installed as root.I tried to add
outPodDir=`lib`
in thebuild.fan
script. The build passed, an emptylib
directory appeared along with a hello.pod in the project directory. But there is no way to use it, because it is not properly installed.Is there a way to specify an alternate directory for the pods?
andy Thu 7 Feb 2013
You need to create a new PathEnv.
The easiest way todo that is create an empty file called
fan.props
in the directory you wish to create the working path.KPNC Thu 7 Feb 2013
Thanks!