Fix bug introduced by 2046f58

This should provide a fix for #3, and not effect the init.el file.
This commit is contained in:
Lars Tveito 2017-02-26 17:05:32 +01:00
parent 2046f582ce
commit 271b0a362c

7
try.el
View File

@ -87,10 +87,11 @@ to a raw .el file. Packages are stored in `try-tmp-dir' and raw
(package-symbol (intern url-or-package)))
(cond ((try-raw-link-p url-or-package) (try-raw-link url-or-package))
((try-package-exists-p package-symbol)
(let ((package-selected-packages nil) ; Don't store packages
(package-user-dir try-tmp-dir)
(let ((package-user-dir try-tmp-dir)
(package-alist nil))
(package-install package-symbol)
(if (version< emacs-version "25.1")
(package-install package-symbol)
(package-install package-symbol 'dont-select))
(message "Trying %s!" url-or-package)))
(t (message (concat "Couldn't find a sensible way to try this. "
"Try running `package-refresh-contents'!"))))))