Skip to content

Commit c640f1e

Browse files
authored
Typo in Remove-Item
--recurse is invalid argument. `-Recurse` is correct option for Remove-Item.
1 parent d726684 commit c640f1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/app-service/configure-language-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,7 @@ Here's a PowerShell script that completes these steps:
699699
# Delete previous Tomcat directory if it exists
700700
# In case previous config isn't completed or a new config should be forcefully installed
701701
if(Test-Path "$Env:LOCAL_EXPANDED\tomcat"){
702-
Remove-Item "$Env:LOCAL_EXPANDED\tomcat" --recurse
702+
Remove-Item "$Env:LOCAL_EXPANDED\tomcat" -Recurse
703703
}
704704
705705
# Copy Tomcat to local

0 commit comments

Comments
 (0)