File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -699,11 +699,12 @@ Here's a PowerShell script that completes these steps:
699
699
# Delete previous Tomcat directory if it exists
700
700
# In case previous config isn't completed or a new config should be forcefully installed
701
701
if(Test-Path " $Env : LOCAL_EXPANDED \tomcat" ){
702
- Remove-Item " $Env : LOCAL_EXPANDED \tomcat" --recurse
702
+ Remove-Item " $Env : LOCAL_EXPANDED \tomcat" -Recurse
703
703
}
704
704
705
705
# Copy Tomcat to local
706
706
# Using the environment variable $AZURE_TOMCAT90_HOME uses the 'default' version of Tomcat
707
+ New-Item " $Env : LOCAL_EXPANDED \tomcat" -ItemType Directory
707
708
Copy-Item -Path " $Env : AZURE_TOMCAT90_HOME \* " -Destination " $Env : LOCAL_EXPANDED \tomcat" -Recurse
708
709
709
710
# Perform the required customization of Tomcat
You can’t perform that action at this time.
0 commit comments