From b225afdd1be5b668f8b5e3939271b83b966ade88 Mon Sep 17 00:00:00 2001 From: Alex Groleau Date: Tue, 18 Nov 2025 17:03:16 -0500 Subject: [PATCH] new version --- flow | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flow b/flow index cbff9f8..1a2e53b 100755 --- a/flow +++ b/flow @@ -49,7 +49,8 @@ build() { # Create the source tarball excluding specified patterns info "Creating tarball: ${tarball_path}" - if tar --exclude='.git*' --exclude='./target' --exclude='./package' --exclude='./flows' --exclude='./flow' -czf "${tarball_path}" .; then + # Set COPYFILE_DISABLE=1 to prevent macOS tar from including ._ metadata files + if COPYFILE_DISABLE=1 tar --exclude='.git*' --exclude='./target' --exclude='./package' --exclude='./flows' --exclude='./flow' -czf "${tarball_path}" .; then success "Successfully created source tarball: ${tarball_path}" else error "Failed to create source tarball."