tags:

views:

46

answers:

3

Hello,

We have some files (bash scripts) that we put on the project repo, but we want them to be ignored when we export the repo to deploy them.

Is this possible?

A: 

I don't think that's possible.

You will have to write a script which exports the project and then deletes whatever needs to be deleted.

sbi
A: 

No, but you can delete them after you export.

Avi
+2  A: 

Sounds like you're trying to make svn do something that would more properly be done using a build automation system. Depending on your environment and goals, Make, Ant, NAnt or somesuch might be appropriate. In simpler cases, a shell script will do just as well.

Rytmis