Skip to content

Commit 499475e

Browse files
committed
fix missing parentheses
1 parent cc105a2 commit 499475e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/uploadhandler.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ module.exports = function (options) {
123123
dstPath: options.uploadDir() + '/' + version + '/' + fileInfo.name,
124124
customArgs: opts.imageArgs || ['-auto-orient']
125125
}, finish);
126-
}
126+
});
127127
});
128128
}
129129
}
@@ -149,7 +149,7 @@ module.exports = function (options) {
149149
});
150150
});
151151
}
152-
}
152+
});
153153
})
154154
.on('aborted', function () {
155155
_.each(tmpFiles, function (file) {

0 commit comments

Comments
 (0)