Skip to content

Instantly share code, notes, and snippets.

@mattvague
Last active February 7, 2023 01:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattvague/91c61671eb94da1a252f28921345f2f0 to your computer and use it in GitHub Desktop.
Save mattvague/91c61671eb94da1a252f28921345f2f0 to your computer and use it in GitHub Desktop.
Delete all shopify dev themes for a store
while read i; do echo "Deleting $i" && shopify theme delete --theme $i -f --store=[YOUR STORE NAME] ; done < <(shopify theme list --store=[YOUR STORE NAME] | awk '/Development \(.*\)/ {print $4}' | sed 's/#//')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment