Skip to content

Commit

Permalink
exclude more CI files from source distro (#25906)
Browse files Browse the repository at this point in the history
* exclude more CI files from source distro

* Exclude any file starting with a .
  • Loading branch information
simonbyrne committed Feb 27, 2018
1 parent 4fe912b commit f09a8d7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,8 @@ endif

# Create file light-source-dist.tmp to hold all the filenames that go into the tarball
echo "base/version_git.jl" > light-source-dist.tmp
git ls-files | sed -e '/\.git/d' -e '/\.travis/d' >> light-source-dist.tmp
# Exclude git, github and CI config files
git ls-files | sed -E -e '/^\..+/d' -e '/\/\..+/d' -e '/appveyor.yml/d' >> light-source-dist.tmp
find doc/_build/html >> light-source-dist.tmp

# Make tarball with only Julia code
Expand Down

0 comments on commit f09a8d7

Please sign in to comment.