diff --git a/package.json b/package.json index 920f891..427c39a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codewrap", - "version": "0.0.15", + "version": "0.0.16", "description": "Get a personalized year in review for any VSCode based editor", "keywords": [], "license": "MIT", diff --git a/src/utils.ts b/src/utils.ts index 6d38f3b..83c43fe 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -84,13 +84,15 @@ export async function main() { name: "Code", path: codePath, }); + } - if (process.platform === 'linux' && existsSync(codeRemotePath)) { - IDEPaths.push({ - name: "Code - Remote", - path: codeRemotePath - }) - } + if (process.platform === 'linux' && existsSync(codeRemotePath)) { + IDEPaths.push({ + name: "Code - Remote", + path: codeRemotePath + }); + + log.success('Note: We found some remote information, we\'ll use it as well') } }