Skip to content

Commit

Permalink
avoid failing whole CI pipeline because of sporadic read error
Browse files Browse the repository at this point in the history
  • Loading branch information
fmigneault committed Dec 19, 2024
1 parent 6e09e69 commit dafd40a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -791,16 +791,17 @@ generate-archive: ## generate ZIP and TAR.GZ archives using current contents
@-echo "Generating archives"
@tar \
-C "$(APP_ROOT)" \
--exclude=.git \
--exclude=.github \
--exclude-vcs \
--exclude-vcs-ignores \
--exclude=.git \
--exclude=.github \
--exclude=*.zip \
--exclude=*.tar.gz \
--exclude=node_modules \
--exclude="$(APP_NAME)-$(APP_VERSION).tar.gz" \
--exclude-vcs-ignores \
-cvzf "$(APP_NAME)-$(APP_VERSION).tar.gz" \
--transform 's,^\.,$(APP_NAME)-$(APP_VERSION),' \
--ignore-failed-read \
.
@cd "$(APP_ROOT)" && \
mkdir -p "$(ARCHIVE_DIR)" && \
Expand Down

0 comments on commit dafd40a

Please sign in to comment.