We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9701d3a commit ed6b957Copy full SHA for ed6b957
package/build_boards_manager_package.sh
@@ -71,13 +71,16 @@ mkdir -p ${outdir}
71
# Some files should be excluded from the package
72
cat << EOF > exclude.txt
73
.git
74
+.git-blame-ignore-revs
75
+.github
76
.gitignore
77
.gitmodules
-.travis.yml
-package
78
+ISSUE_TEMPLATE.md
79
doc
80
+package
81
EOF
82
# Also include all files which are ignored by git
83
+# TODO: .gitattributes helper for the above?
84
git ls-files --other --directory >> exclude.txt
85
# Now copy files to $outdir
86
rsync -a --exclude-from 'exclude.txt' ${srcdir}/ ${outdir}/
0 commit comments