Last active
February 7, 2023 01:10
-
-
Save mattvague/91c61671eb94da1a252f28921345f2f0 to your computer and use it in GitHub Desktop.
Delete all shopify dev themes for a store
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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