Fixes #8 - Fix patch direction in error message

This commit is contained in:
Andrew Chilton 2015-01-21 09:03:31 +13:00
Родитель 61f1615bd1
Коммит bdb58a48c5
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -217,7 +217,7 @@ function checkAllPatchesAvailable(callback) {
// check that this patch exists
if ( !ctx.patches[currentPatchLevel] || !ctx.patches[currentPatchLevel][nextPatchLevel] ) {
process.nextTick(function() {
callback(new Error('Patch from level ' + currentPatchLevel + ' to ' + (currentPatchLevel+1) + ' does not exist'))
callback(new Error('Patch from level ' + currentPatchLevel + ' to ' + nextPatchLevel + ' does not exist'))
})
return
}