Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ async function getProjectDir(envFolder: string): Promise<string | undefined> {
if (!(await pathExists(dotProjectFile))) {
return undefined;
}
const projectDir = await readFile(dotProjectFile);
const projectDir = (await readFile(dotProjectFile)).trim();
if (!(await pathExists(projectDir))) {
traceError(
`The .project file inside environment folder: ${envFolder} doesn't contain a valid path to the project`,
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Absolute path to \src\test\pythonEnvironments\common\envlayouts\pipenv\project2
Absolute path to \src\test\pythonEnvironments\common\envlayouts\pipenv\project2
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Absolute path to \src\test\pythonEnvironments\common\envlayouts\pipenv\project2
Absolute path to \src\test\pythonEnvironments\common\envlayouts\pipenv\project2