-
-
Notifications
You must be signed in to change notification settings - Fork 283
Closed
Labels
Description
I'm having an issue where projects are not showing up as "active manifests" when I run gc. It is my understanding that any projects created should show up under gc as active manifests until they are deleted from the filesystem.
I'm using Windows 10.
The problem seems to occur when two instances of the juila console are used at the same time:
- Start a julia console using the desktop shortcut that was created during installation.
- Start the package manager
]and create a new shared environmentactivate --shared test1. - Add a package to the test1 project
add DSP. - Open up a second terminal in the same manner, without closing the first one.
- Inside that terminal create another shared environment called test2.
]thenactivate --shared test2. - [edit] Add a package to the test2 project
add DSP. - Close both terminals.
- Open a new terminal in the same manner as before, and enter the package manger
]. - Type
gc.
At this point I would expect both test1 and test2 to show up under the gc's "active manifests" heading, but only test1 is showing up.
I did some more testing and tried deleting test1 from my filesystem. I ran the gc command, and the package manager deleted the DSP and dependent packages from my computer, even though test2 is still using it.