```
<Svn TaskAction="Copy" Items="$(SvnTrunkUrl)" Destination="$(SvnSnapshotsUrl)/it-$(AppVersion)" />
```
Results in:
E205001- Cannot invoke editor to get log message when non-interactive
When invoking svn.exe -copy with -non-interactive there should always be a commit message that is specified with the -m flag.
Solution:
```
<Svn TaskAction="Copy" Items="$(SvnTrunkUrl)" Destination="$(SvnSnapshotsUrl)/it-$(AppVersion)" CommitMessage="This fixes my issue"/>
```
The CommitMessage property should be used like TaskAction="Commit"
Comments: ** Comment from web user: mikeFourie **
<Svn TaskAction="Copy" Items="$(SvnTrunkUrl)" Destination="$(SvnSnapshotsUrl)/it-$(AppVersion)" />
```
Results in:
E205001- Cannot invoke editor to get log message when non-interactive
When invoking svn.exe -copy with -non-interactive there should always be a commit message that is specified with the -m flag.
Solution:
```
<Svn TaskAction="Copy" Items="$(SvnTrunkUrl)" Destination="$(SvnSnapshotsUrl)/it-$(AppVersion)" CommitMessage="This fixes my issue"/>
```
The CommitMessage property should be used like TaskAction="Commit"
Comments: ** Comment from web user: mikeFourie **
Thanks for reporting this... Mike