We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Or something like that...
DeploymentStepsFor(Test1, t => { string temp = @"\\localhost\c$\temp"; string sub = temp + "\\sub"; t.CreateEmptyFolder(sub); t.CopyFile(temp + "\\dummy_exists.txt").ToDirectory(sub); t.CopyFile(temp + "\\dummy_does_not_exist.txt").ToDirectory(sub); t.CopyFile(temp + "\\dummy_exists.txt").ToDirectory(sub); });
Create a file at \\localhost\c$\temp\dummy_exists.txt
\\localhost\c$\temp\dummy_exists.txt
[Good ] 'C:\temp\sub' already exists. [copy][overwrite] '\\localhost\c$\temp\dummy_exists.txt' -> 'C:\temp\sub\dummy_exists.txt' C:\temp\sub\dummy_exists.txt [Good ] Copy '\\localhost\c$\temp\dummy_exists.txt' to 'C:\temp\sub' [copy][overwrite] '\\localhost\c$\temp\dummy_exists.txt' -> 'C:\temp\sub\dummy_exists.txt' C:\temp\sub\dummy_exists.txt [Good ] Copy '\\localhost\c$\temp\dummy_exists.txt' to 'C:\temp\sub'
I think it should complain, that "dummy_does_not_exist.txt" does not exist! Using latest source from github.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Or something like that...
Steps to reproduce:
Deploayment definition:
Create one file
Create a file at
\\localhost\c$\temp\dummy_exists.txt
Run it :)
Output:
I think it should complain, that "dummy_does_not_exist.txt" does not exist!
Using latest source from github.
The text was updated successfully, but these errors were encountered: