Some help files missing upon deploy (2.3.4.4)

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
7/13/2010 1:44:43 AM
Gravatar
Total Posts 10

Some help files missing upon deploy (2.3.4.4)

I'm trying to deploy.  I've deployed with UnleashIt to a staging directory, having added the appropriate file masks.  I'm currently trying to recreate the 2.3.4.4 release.  I've also made a little shell script to do the extra steps:

===========

#!/bin/bash

MOJODIR=${1:-"mojo-deploy"}

sed -i'' -e's/compilation debug="true"/compilation debug="false"/' $MOJODIR/Web.config
rm -fv $MOJODIR/Data/currentlog.config
rm -fv $MOJODIR/Data/test.config
rm -fv $MOJODIR/Data/Sites/1/test.config
rm -rfv $MOJODIR/Data/Sites/1/systemfiles/*
rm -rfv $MOJODIR/obj

============

Anyway... when I do a recursive diff between the bundle I downloaded versus the one I just built, all of the files in mojoPortal.Features.UI/Data are missing, and it doesn't seem that the Data directory is specified in the mdpostbuild.sh.  Should it be?

I checked 2.3.4.5 also, and it seems to be the same.  Any hints? Is the build supposed to handle these helpfiles somehow, and monodevelop just isn't doing that?  Or is there something else I'm not thinking of?  I'm not sure exactly which way I should approach this.

Thanks,

Erich

7/13/2010 6:05:42 AM
Gravatar
Total Posts 18439

Re: Some help files missing upon deploy (2.3.4.4)

Hi Erich,

Yes, you are right that the /Data folder should be added in the mdpostbuild.sh file to make it correct, I will update it. However, it has not been an issue when I make a package because I first make a package on windows from a Visual Studio build, then I just replace the dlls in the /bin folder with the ones I compiled on linux with MonoDevelop.

Best,

Joe

7/13/2010 2:39:59 PM
Gravatar
Total Posts 10

Re: Some help files missing upon deploy (2.3.4.4)

Ah, so Visual Studio IS doing something monodevelop isn't, then.  Interesting.

Thank you for the feedback!  That's what I needed to know.

Erich

You must sign in to post in the forums. This thread is closed to new posts.