Skip to content

Commit c4e58fd

Browse files
committed
Fix deprecation warning in for using EmberApp.concatFiles
1 parent ef02921 commit c4e58fd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/ext/patch-ember-app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function patchEmberApp(emberApp) {
2121
if (options.annotation === 'Concat: App') {
2222
tree = this.addonPreconcatTree(tree);
2323
}
24-
return originalConcatFiles.call(this, tree, options);
24+
return originalConcatFiles.apply(this, arguments);
2525
};
2626
}
2727

0 commit comments

Comments
 (0)