Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am developing in windows environment and my production server has linux. My goal was updating production version from my local machine, but run in to problems with windows&ssh.

So now my backup plan is just doing it locally on my server and that is ok. This allows me to do it easily via ssh from different workstations.

What I am now wondering is my build.xml file, which is included with my project in svn. Do I really need to make initial export just to run my build.xml which then does actual build? Or should I just separate my build.xml from app? How this kind of local build should be done?

share|improve this question
you should close this question or post a bounty it will improve the chances that additional questions will be answered. – Steve Robillard Nov 28 '11 at 5:12

1 Answer

up vote 1 down vote accepted

I would keep the build file with the app for portability, future proofing and versioning reasons. I also would keep the svn export step it ensures a clean and consistent state to run your build from.

share|improve this answer
You may also want to post a question regarding your win/ssh issue. – Steve Robillard Sep 4 '11 at 2:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.