Skip to content

Commit 95a4b47

Browse files
committed
Fix bucket
1 parent 7cb8fef commit 95a4b47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ func applyEnv(cfg *Config) {
141141
if v := os.Getenv("R2_ENDPOINT"); v != "" {
142142
cfg.R2.Endpoint = v
143143
}
144-
if v := os.Getenv("WP_COMPOSER_DEPLOY_R2"); v != "" {
144+
if v := os.Getenv("WP_PACKAGES_DEPLOY_R2"); v != "" {
145145
cfg.R2.Enabled = strings.EqualFold(v, "true") || v == "1"
146146
}
147147
if v := os.Getenv("R2_CDN_BUCKET"); v != "" {

0 commit comments

Comments
 (0)