I found the following in the RFE on Sourcefoge:
Unfortunatley this only works for a specific version. Is there a solution for any future versions? The sample above differs between pre 2.05 and 2.05 or higher. Perhaps something like the code below would be possible.
!define "ver_${NSIS_VERSION}"
!ifdef "ver_v2.05"
File /r /x .svn "${QUELLE_TC}\*.*"
!else
File /r "${QUELLE_TC}\*.*"
!endif
I don't want to change the code with every new nsis release.
!ifdef "$NSIS_VERSION" >= "v2.05"
File /r /x .svn "${QUELLE_TC}\*.*"
!else
File /r "${QUELLE_TC}\*.*"
!endif
Regards flizebogen