diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-14 16:57:13 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-14 16:57:13 -0700 |
commit | 2864e2fa39968ccb8f4163fdd94249e9031cd25b (patch) | |
tree | fe7529984f25ce703822a03f529783bd597e936b | |
parent | e15ec7aa22c4b95c4b1c2e4811ac8ec480af65f0 (diff) | |
download | sncontinue-2864e2fa39968ccb8f4163fdd94249e9031cd25b.tar.gz sncontinue-2864e2fa39968ccb8f4163fdd94249e9031cd25b.tar.bz2 sncontinue-2864e2fa39968ccb8f4163fdd94249e9031cd25b.zip |
ls
-rw-r--r-- | extension/src/activation/environmentSetup.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/extension/src/activation/environmentSetup.ts b/extension/src/activation/environmentSetup.ts index 6c4a37a4..d7486d2c 100644 --- a/extension/src/activation/environmentSetup.ts +++ b/extension/src/activation/environmentSetup.ts @@ -217,6 +217,9 @@ export async function startContinuePythonServer(redownload: boolean = true) { // Validate that the file exists console.log("Looking for file at ", destination); if (!fs.existsSync(destination)) { + // List the contents of the folder + const files = fs.readdirSync(path.join(getExtensionUri().fsPath, "server")); + console.log("Files in server folder: ", files); const errText = `- Failed to install Continue server.`; vscode.window.showErrorMessage(errText); console.log("6: throwing error message: ", errText); |