fix(ship-logs): never use the .coffee extension

This commit is contained in:
Ben Gotow 2015-05-19 22:28:30 -07:00
parent 4a4872ec27
commit 80adb41d2e

View file

@ -180,7 +180,7 @@ module.exports = ErrorReporter = (function() {
console.log("ErrorReporter: Shipping Logs. " + reason);
Task = require('./task')
ship = Task.once(fs.absolute('./tasks/ship-logs-task.coffee'), tmpPath, logPattern, function() {
ship = Task.once(fs.absolute('./tasks/ship-logs-task'), tmpPath, logPattern, function() {
self.appendLog("ErrorReporter: Shipped Logs.");
});
};