Skip to content

Commit

Permalink
fix path for starting pyright (#2830)
Browse files Browse the repository at this point in the history
fix absolute path to relative path
  • Loading branch information
IamtherealBrian authored Sep 11, 2024
1 parent 5e892ff commit 59a890a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ object PythonLanguageServerManager {
while (tryCount < MAX_TRY_COUNT && !started) {
try {
val command = Seq("node", "--loader", "ts-node/esm", "src/main.ts")
val workingDir = new File("C:/Users/Owner/new/texera/core/pyright-language-server")
val workingDir = new File("../pyright-language-server")
val exitCode = Process(command, workingDir).!
if (exitCode == 0) {
logger.info(
Expand Down

0 comments on commit 59a890a

Please sign in to comment.