We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 289c7ed commit 757b4eaCopy full SHA for 757b4ea
.ci/make.sh
@@ -140,7 +140,7 @@ esac
140
if [[ "$CMD" == "assemble" ]]; then
141
artefact_name="elasticsearch-php-${VERSION}"
142
echo -e "\033[34;1mINFO: copy artefacts\033[0m"
143
- rsync -arv --exclude=.ci --exclude=.git "$PWD" "${output_folder}/."
+ rsync -arv --exclude=.ci --exclude=.git --filter=':- .gitignore' "$PWD" "${output_folder}/."
144
145
echo -e "\033[34;1mINFO: rename artefacts\033[0m"
146
mv -v "${output_folder}/elasticsearch-php" "${output_folder}/${artefact_name}"
.gitignore
@@ -46,3 +46,6 @@ tests/*-junit.xml
46
47
# YAML tests
48
tests/Elasticsearch/Tests/Yaml
49
+
50
+# Exclude .ci/make.sh artifcats
51
+.ci/output
0 commit comments