diff --git a/src/appHome.js b/src/appHome.js index e5541fc..1db2e5d 100644 --- a/src/appHome.js +++ b/src/appHome.js @@ -28,7 +28,7 @@ function isShared (name) { function list (sharedOnly) { const repos = fs.readdirSync(APP_HOME) - if (!sharedOnly) return repos.filter(r => !r.startsWith('.')) + if (!sharedOnly) return repos.filter(r => !r.startsWith('.') && isInitialized(r)) return repos.filter(repo => isShared(repo)) }