From 74f2d09a5eca1e1f1e42315c341e8c342be7001e Mon Sep 17 00:00:00 2001 From: Ed Morley <501702+edmorley@users.noreply.github.com> Date: Tue, 24 Nov 2020 08:55:49 +0000 Subject: [PATCH] Exclude more files when publishing the buildpack (#1127) Since these files are not required at compile time. The incorrect indentation has also been corrected. Closes @W-8065952@. [skip changelog] --- buildpack.toml | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/buildpack.toml b/buildpack.toml index 92f36b7..1886335 100644 --- a/buildpack.toml +++ b/buildpack.toml @@ -1,13 +1,21 @@ [buildpack] name = "Python" - [publish.Ignore] - files = [ - "test/", - ".gitignore", - ".dockerignore", - ".github/", - "Dockerfile", - "Pipfile", - "Pipfile.lock" - ] \ No newline at end of file +[publish.Ignore] +files = [ + ".git2gus/", + ".github/", + "builds/", + "spec/", + "test/", + ".dockerignore", + ".gitignore", + ".travis.yml", + "Gemfile", + "Gemfile.lock", + "hatchet.json", + "hatchet.lock", + "Makefile", + "Rakefile", + "requirements.txt", +]