Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0f912c12b2 | |||
| b225afdd1b | |||
| f0bd32450d |
3
flow
3
flow
@ -49,7 +49,8 @@ build() {
|
|||||||
|
|
||||||
# Create the source tarball excluding specified patterns
|
# Create the source tarball excluding specified patterns
|
||||||
info "Creating tarball: ${tarball_path}"
|
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}"
|
success "Successfully created source tarball: ${tarball_path}"
|
||||||
else
|
else
|
||||||
error "Failed to create source tarball."
|
error "Failed to create source tarball."
|
||||||
|
|||||||
Reference in New Issue
Block a user