Преглед изворни кода

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

Jason Crist пре 3 година
родитељ
комит
3659b5c608
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      theme-utils.mjs

+ 1 - 1
theme-utils.mjs

@@ -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);
 }