From 4b5298ec779f2269988a7e76cea2b9dbcbcad13e Mon Sep 17 00:00:00 2001 From: "Charles-P. Clermont" Date: Mon, 8 Jan 2024 07:53:08 -0500 Subject: [PATCH] Hotfix missing --path in PULL_THEME branch --- CHANGELOG.md | 11 ++++++++--- entrypoint.sh | 2 +- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11056d6..8e7cfea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,12 @@ +v1.2.1 / 2024-01-08 +================== + + * Hotfix missing `--path` in `$SHOP_PULL_THEME` branch + v1.2.0 / 2024-01-05 ================== -- Migrated to Shopify CLI 3 -- Updated to lhci 0.13.1 -- Breaking: Deprecated app-id and app-password login options are no longer supported + * Migrated to Shopify CLI 3 + * Updated to lhci 0.13.1 + * Breaking: Deprecated app-id and app-password login options are no longer supported diff --git a/entrypoint.sh b/entrypoint.sh index 4d190bd..d788c83 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -148,7 +148,7 @@ step "Creating development theme" if [[ -n "${SHOP_PULL_THEME+x}" ]]; then log "Pulling settings from theme $SHOP_PULL_THEME" - shopify theme pull $theme_root --theme ${SHOP_PULL_THEME} --only templates/*.json --only config/settings_data.json + shopify theme pull --path "$theme_root" --theme ${SHOP_PULL_THEME} --only templates/*.json --only config/settings_data.json fi theme_push_log="$(mktemp)"