-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
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
Recursive Copy Fix & MSdeploy Changes #3618
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Leave a comment
@@ -153,4 +153,25 @@ export async function isMSDeployPackage(webAppPackage: string ) { | |||
} | |||
tl.debug("Is the package an msdeploy package : " + isParamFilePresent); | |||
return isParamFilePresent; | |||
} | |||
|
|||
export function copyDirectory(sourceDirectory: string, destDirectory: string) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As discussed, can you add L0 for this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
L0 Test added.
@@ -458,4 +458,13 @@ describe('AzureRmWebAppDeployment Suite', function() { | |||
done(); | |||
}); | |||
|
|||
it('Validate webdeployment-common.utility.copyDirectory()', (done:MochaDone) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please add the same test in IISWebAppDeploymentOnMachineGroup task as well
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added L0 Test for IIS App Deploy
No description provided.