Exclude /sass from any premium themes pushed to premium repo (#5210)

This commit is contained in:
Jason Crist 2021-12-16 09:09:08 -05:00 committed by GitHub
parent 7e0d5a4297
commit 3659b5c608
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -574,7 +574,7 @@ function pushPremiumToSandbox() {
'videomaker-white'
]
executeCommand(`
rsync -av --no-p --no-times --exclude-from='.sandbox-ignore' ./${premiumThemes.join(' ./')} wpcom-sandbox:${sandboxRootFolder}/wp-content/themes/premium/
rsync -av --no-p --no-times --exclude-from='.sandbox-ignore' --exclude='sass/' ./${premiumThemes.join(' ./')} wpcom-sandbox:${sandboxRootFolder}/wp-content/themes/premium/
`, true);
}