Skip to content
⌘ NSIS Forum Archive

removing CVS folders?

3 posts

Guest#

removing CVS folders?

Hi Forum!

I have what is hopefully a simple question. I have a bunch of folders that get included in my installation, but the source folders are under CVS control. Is there any easy way for my installer script to filter out the CVS folders when it builds the installer executible so the user doesn't get them on their end?

Any help would be greatly appreciated.
Afrow UK#
This was in the docs as an example for File usage:
File /r /x CVS "myproject\*.*"

/x == exclude

-Stu
Guest#
Oh great! I was wondering if there was an exclude switch but I couldn't seem to find it. Thank you so much!