We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ddbaa7f + 2ecab8b commit 6891544Copy full SHA for 6891544
builder/build.sh
@@ -190,9 +190,9 @@ sleep ${PAUSE:-0}
190
## Produce slug
191
192
if [[ -f "$build_root/.slugignore" ]]; then
193
- tar -z --exclude='.git' --exclude='node_modules' -X "$build_root/.slugignore" -C $build_root -cf $slug_file .
+ tar -z --exclude='.git' --exclude='node_modules' --exclude='.heroku' -X "$build_root/.slugignore" -C $build_root -cf $slug_file .
194
else
195
- tar -z --exclude='.git' --exclude='node_modules' -C $build_root -cf $slug_file .
+ tar -z --exclude='.git' --exclude='node_modules' --exclude='.heroku' -C $build_root -cf $slug_file .
196
fi
197
198
if [[ "$slug_file" != "-" ]]; then
0 commit comments