Fix path of copied schema files

Issue gh-12804
This commit is contained in:
Steve Riesenberg 2023-03-01 11:49:36 -06:00
parent 7b88ab289d
commit fabf7f649c
No known key found for this signature in database
GPG Key ID: 5F311AB48A55D521

View File

@ -86,7 +86,7 @@ public class SchemaDeployPlugin implements Plugin<Project> {
*/
if (name == "spring-security") {
def springSecurityOauthPath = "/var/www/domains/spring.io/docs/htdocs/autorepo/schema/spring-security-oauth/current/security"
execute "cp $springSecurityOauthPath/* $extractPath"
execute "cp $springSecurityOauthPath/* ${extractPath}security"
}
execute "chmod -R g+w $extractPath"