On Jun 13, 8:56 am, crblanco <crbla...@gmail.com> wrote:
> We use ORCAScript 11 (from PB 11.2) and SVN for source control. We
> will use something called Hudson to get the latest source into some
> directory (not my call). So the only stuff in that directory will be
> the *.sr? files and PBG files and a PBT file. Can I use connect
> offline in Orcascript to generate a new set of PBLs? It keeps getting
> caught up in the ancestry of objects. Oh another thing, we use PFC.
> And it seems the PFC PBLs are the ones not getting generated.
>
> So I started trying to bootstrap the PFC objects by themselves. No
> go.
>
> start session
> create library "pfcapp.pbl"
> create library "pfcapsrv.pbl"
> create library "pfcdwsrv.pbl"
> create library "pfcmain.pbl"
> create library "pfcutil.pbl"
> create library "pfcwnsrv.pbl"
> create library "pfeapsrv.pbl"
> create library "pfedwsrv.pbl"
> create library "pfemain.pbl"
> create library "pfeutil.pbl"
> create library "pfewnsrv.pbl"
>
> scc set connect property localprojpath "C:\Projects\ORCAScript\WS"
> scc set connect property logfile "aabuild_conn.log"
> scc set connect property logappend false
> Scc set connect property deletetempfiles "FALSE"
>
> scc connect offline
> ;scc set target "ws_justpfc.pbt" "importonly"
> scc refresh target migrate
> scc close
> end session
I don't know if you need to, but I would suggest adding the other SCC
properties. And I don't think you need to create the libraries.
start session
scc set connect property provider "PB Native"
scc set connect property userid "devadmin"
scc set connect property localprojpath ".\"
scc set connect property logfile ".\orca.log"
scc set connect property logappend "TRUE"
scc set connect property project ".\"
scc set connect property deletetempfiles "FALSE"
scc connect offline
scc set target ...
scc refresh target full
scc close
end session
|