Skip to content

Commit

Permalink
added 'dynamic_images' to Filter.excludedFoldersList since all dynami…
Browse files Browse the repository at this point in the history
…c images in FT ads will be in the Flashtalking system and not included in the to_upload delivery zip
  • Loading branch information
cattlebane committed Apr 18, 2019
1 parent 8340f6d commit ff1c9a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/filter.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const excludedFilesList = ['.gitignore', '.DS_Store', '*.txt', 'manifest.js']
const excludedFoldersList = ['instantAssets']
const excludedFoldersList = ['instantAssets', 'dynamic_images']

function excludedFiles(filename) {
for (let str of excludedFilesList) {
Expand Down

1 comment on commit ff1c9a1

@cattlebane
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This also prevents the 'common/dynamic_images/' to be copied to the to_upload delivery zip which is the intended behavior.

Please sign in to comment.