Skip to content

Commit

Permalink
fix(ghost): ignoring models when comparing revisions
Browse files Browse the repository at this point in the history
  • Loading branch information
allardy committed Aug 15, 2019
1 parent 3bccd79 commit 4a15cf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bp/core/services/ghost/service.ts
Expand Up @@ -40,7 +40,7 @@ export interface FileChange {
export type FileChangeAction = 'add' | 'edit' | 'del'

const MAX_GHOST_FILE_SIZE = asBytes('100mb')
const bpfsIgnoredFiles = ['models/**', '**/*.js.map']
const bpfsIgnoredFiles = ['models/**', 'data/bots/*/models/**', '**/*.js.map']

@injectable()
export class GhostService {
Expand Down

0 comments on commit 4a15cf4

Please sign in to comment.