This repository was archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 295
Install packages in a custom location when using Atom as portable #678
Copy link
Copy link
Closed
Labels
Description
Prerequisites
- Put an X between the brackets on this line if you have done all of the following:
- Reproduced the problem in Safe Mode: http://flight-manual.atom.io/hacking-atom/sections/debugging/#using-safe-mode
- Followed all applicable steps in the debugging guide: http://flight-manual.atom.io/hacking-atom/sections/debugging/
- Checked the FAQs on the message board for common solutions: https://discuss.atom.io/c/faq
- Checked that your issue isn't already filed: https://github.com/issues?utf8=✓&q=is%3Aissue+user%3Aatom
- Checked that there is not already an Atom package that provides the described functionality: https://atom.io/packages
Description
It looks like it's currently not possible to use the apm
command in while using Atom as portable version in a custom location (see step 2 and 3) (on Windows).
Steps to Reproduce
- Download
atom-windows.zip
- Create
.atom
in custom location likeC:\Users\username\portables\.atom
- Extract to custom location like
C:\Users\username\portables\Atom
- Enable the
apm
command via the environmental variables by addingC:\Users\sknit\portables\Atom\resources\cli
to the usersPath
variable - Run
apm install
to install some package
Expected behavior: It installs toC:\Users\username\portables\.atom\packages
(as defined in step 2)
Actual behavior: It tries to install to C:\Users\username\.atom\packages
Reproduces how often: 100%
Versions
- atom 1.13.0
- apm 1.14.1
Additional Information
I found this PR (#421) which seems to address this issue, but seems to be dead though. Any news on this?