Fix selections migration

Should fix #583
This commit is contained in:
DC
2016-05-26 01:36:39 -07:00
parent 955fe76c3c
commit 72d902e548

View File

@@ -164,7 +164,7 @@ function cleanUpConfig () {
}
// Migration: add per-file selections
if (!ts.selections) {
if (!ts.selections && ts.files) {
ts.selections = ts.files.map((x) => true)
}
})