From 406466454e7707abacce7be7db1621d8db0f4656 Mon Sep 17 00:00:00 2001 From: Alex Groleau Date: Mon, 14 Apr 2025 12:03:01 -0400 Subject: [PATCH] excluding flows from jspg release --- flow | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flow b/flow index 5425bf7..2a23bde 100755 --- a/flow +++ b/flow @@ -63,7 +63,7 @@ build() { # Create the source tarball excluding specified patterns echo -e " ${CYAN}Creating tarball: ${tarball_path}${RESET}" - if tar --exclude='.git*' --exclude='./target' --exclude='./package' -czf "${tarball_path}" .; then + if tar --exclude='.git*' --exclude='./target' --exclude='./package' --exclude='./flows' --exclude='./flow' -czf "${tarball_path}" .; then echo -e "✨ ${GREEN}Successfully created source tarball: ${tarball_path}${RESET}" else echo -e "❌ ${RED}Failed to create source tarball.${RESET}" >&2