We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f4fa91 commit cddef86Copy full SHA for cddef86
src/commands/default.ts
@@ -184,7 +184,13 @@ async function cloneMissingRepos(cfg: RootConfig) {
184
if (fs.exists(dest)) return
185
fs.mkdir(dirname(dest))
186
fs.link(dest, relative(dirname(dest), repoPaths[repoHash]))
187
- return
+ return log(
188
+ green('+'),
189
+ 'Linked',
190
+ green(cwdRelative(dest)),
191
+ 'to',
192
+ yellow(cwdRelative(repoPaths[repoHash]))
193
+ )
194
}
195
// Currently, indo does not support nested .indo.json files that don't
196
// have their own repository. As a workaround for testing purposes,
0 commit comments