- Notifications
You must be signed in to change notification settings - Fork102
VS Code extension support for pnpm installed postgrestools#377
-
TheVS Code extension, upon startup,copies the postgrestools binary to a temporary location, and executes it from there. This is to prevent locking the file on the user's system while the VS Code extension is running. ✅ This works if the binary were installed via The error we see is the following:
We might be able to usepnpm link, although it would make the exit cleanup more involved since we'd have to remove the local Another solution would be to copy the executable to the same directory in which we found it, just with a new name. A new name is being used already, so this would be a pretty minimal change. We'd want to fail of course if such a file already exists. I'm taking a look at this now - may open an MR tonight. Cheers! |
BetaWas this translation helpful?Give feedback.